h1 {
	position: absolute;
	top: 200px;
	font-size: calc(60px + .3vw);
}

@media screen and (max-width: 1050px) {

	h1 {
		font-size: calc(40px + .3vw);
		top: 120px;
	}

	#star {
		display: none;
	}
	#star ~ p {
		width: 80vw;
		max-width: unset;
	}
}

@media screen and (max-width: 700px) {
	h1 {
		top: 80px;
		font-size: calc(25px + .3vw);
	}
	
}

@media screen and (max-width: 500px) {
	h1 {
		top: 70px;
		font-size: calc(20px + .3vw);
	}
	
}