.hero {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 80vh;
	overflow: hidden;
}

.hero .bg {
	position: absolute;
	left: 0;
	bottom: 200px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: fixed;
	z-index: -1;
	filter: blur(5px);
}

.hero h1 {
	display: block;
	position: absolute;
	top: 25%;
	left: 0;
	width: 100%;
	transform: translateY(-50%);
	font-size: 3.5rem;
	text-align: center;
}

.hero .logo {
	display: block;
	cursor: pointer;
	position: absolute;
	width: 300px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.2s ease-in-out;
}

.hero .logo:hover {
	width: 310px;
}

main {
	position: relative;
	background: url("../images/background.png");
	background-size: 100%;
	padding-bottom: 50px;
}

.waves {
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(-100%);
	width: 100%;
	pointer-events: none;
}

section {
	top: -50px;
}

section img {
	width: 80%;
}

.revolutionary img {
	width: 60%;
	border-radius: 10px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.esport iframe {
	width: 30vw;
	height: calc(30vw * 9 / 16);
}

.esport div:has(iframe) p {
	width: 30vw;
	margin: 0 auto;
}

.music-player {
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	bottom: 10px;
	right: 10px;
	width: 25px;
	height: 25px;
	z-index: 100;
	padding: 1rem;
	background-color: #1f1f1f;
	border-radius: 1rem;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
	transform: scale(0.9);
	transition: transform 0.3s ease-in-out;
}

.music-player:hover {
	transform: scale(1);
}

.music-player audio {
	display: none;
}

.music-player i {
	padding: 1rem;
	font-size: 2rem;
	cursor: pointer;
}

@media screen and (max-width: 768px) {
	.hero .bg {
		bottom: 0;
	}

	section {
		top: 0;
	}

	section img {
		width: 100%;
	}

	.functioning img {
		width: 80%;
	}

	.revolutionary img {
		width: 100%;
	}

	.esport iframe {
		width: 80vw;
		height: calc(80vw * 9 / 16);
	}

	.esport div:has(iframe) p {
		width: 80vw;
	}
}