@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Roboto:wght@900&display=swap');
:root{
	--footer-column-width: calc(100% / 3);
}
html, body {
	padding: 0;
	margin: 0;
	color: #fff;
}
body{
	height: 100vh;
	width: 100vw;
	font-family: 'Roboto', sans-serif;
}
.top-image{
	padding: 30px 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.top-image img{
	position: relative;
	height: 80px;
	width: 80px;
	animation: slide-image-in 1s;
}
.header-text{
	font-family: 'Roboto', sans-serif;
	font-size: 70px;
	margin: 0;
}
.center{
	font-family: 'Poppins', sans-serif;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.footer{
	position: absolute;
	bottom: 0;
	width: 100%;
	display: inline-grid;
	grid-template-columns: var(--footer-column-width) var(--footer-column-width) var(--footer-column-width);
}
.footer .empty{
	order: 1;
}
.footer .copyright{
	order: 2;
	text-align: center;
}
.footer .social-links-parent{
	order: 3;
}
.footer .social-links{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	float: right;
	justify-self: end;
}
.footer .social-links .link{
	margin: 0 10px;
	height: 50px;
	width: 50px;
	border-radius: 30px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition-duration: .4s;
}
.footer .social-links .link:hover{
	border-radius: 10px;
}
.footer .social-links .link.youtube{
	background: #ce201f;
}
.footer .social-links .link.tiktok{
	background: linear-gradient(to right top, #00f2ea, #f6034f, #000);
}
.footer .social-links .link.instagram{
	background: linear-gradient(to right top, #fadb00, #f90306, #7a37ac);
}
.footer .social-links .link.discord{
	background: #5165f6;
}
.footer .social-links .link svg{
	color: #fff;
	height: 30px;
	width: 30px;
	fill: #fff;
}
#backgrounds{
	position: fixed;
	height: 100%;
	width: 100%;
	z-index: -1;
	background-color: #000;
	top: 0;
	left: 0;
}
#backgrounds .background{
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	transition-duration: 1s;
	opacity: 0;
}
#backgrounds .background .backgroundimg{
	background-size: cover;
	background-position: center;
	transition-duration: 8s;
	position: relative;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}
#backgrounds .background .backgroundimg.img-1{
	background-image: url("../images/background/burger2.png");
}
#backgrounds .background .backgroundimg.img-2{
	background-image: url("../images/background/image.png");
}
#backgrounds .background .backgroundimg.img-3{
	background-image: url("../images/background/image2.png");
}
.slider{
	position: fixed;
	opacity: 1;
	background-color: #fff;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	transition: 8s ease-in-out;
}
@keyframes slide-image-in{
	0%{
		top: -10px;
		opacity: 0;
	}
	100%{
		top: 0;
		opacity: 1;
	}
}
@media only screen and (max-width: 860px){
	.footer{
		display: block;
		grid-template-columns: unset;
	}
	.footer .empty{
		display: none;
	}
	.footer .social-links{
		justify-self: unset;
		float: unset;
		justify-content: center;
	}
}