#mirrorface {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	z-index: -2;
	filter: brightness(90%) blur(2px);
	scale: 110%

	/* @media not prefers-reduced-motion {
		animation: zoom-in-zoom-out 30s ease infinite;
	} */
}

#title-div {
	text-align: center;
	margin-top: 20px;
	font-size: 8vmax;
	justify-content: center;
}

#content {
	margin-bottom: 10rem;
	justify-content: center;
}

#footer {
	margin-bottom: 40px;
	margin-right: 40px;
	margin-left: 40px;
	justify-content: space-between;
	font-size: 3vmax;
	flex-direction: row;

	div {
		display: flex;
	}
}

@media only screen and (max-width: 1000px) {
	#footer {
		font-size: 5vmax;
		gap: 20px;
		flex-direction: column;
		align-items: center;
	}
	#content {
		margin-bottom: 2rem;
	}
}

#apple {
	position: fixed;
	filter: blur(5px);
	top: 50vh;
	left: -200px;
	scale: 200%;

	@media not prefers-reduced-motion {
		animation: 12s fly infinite ease-out;
	}
}

#music {
	width: 80%;
	max-width: 800px;
	height: 20vh;
}

@keyframes zoom-in-zoom-out {
	0% {
		scale: 105%;
	}
	50% {
		scale: 110%;
	}
	100% {
		scale: 105%;
	}
}

@keyframes fly {
	0% {
		transform: translate(0, 0) rotate(0);
	}
	5% {
		transform: translate(120vw, -20vh) rotate(0.2turn);
	}

	20% {
		transform: translate(120vw, -20vh) rotate(0.2turn);
	}

	25% {
		transform: translate(0, 10vh) rotate(0.4turn);
	}

	50% {
		transform: translate(0, 10vh) rotate(0.4turn);
	}
	55% {
		transform: translate(120vw, -15vh) rotate(0.6turn);
	}

	80% {
		transform: translate(120vw, -15vh) rotate(0.6turn);
	}
	85% {
		transform: translate(0, -20vh) rotate(0.8turn);
	}
}
