@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

body {
	background-image: linear-gradient(270deg, #080808 0%, #101010 80%);
	font-family: "Roboto";
}

.center {
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #ff0080;
}

.center .links {
	text-align: center;
}

a {
	text-decoration: none;
	color: #ff0080;
}

.footer {
	position: fixed;
	bottom: 1%;
	left: 50%;
	transform: translate(-50%, 0%);
}

.footer img {
	border: 2px solid #ff8000;
	border-radius: 3px;
	max-height: 40vh;
	width: auto;
}

.footer span {
	color: #ff8000;
	font-weight: bold;
}

@keyframes fadeInUp-frames {
	0% {
		transform: translateY(70%);
		opacity: 0;
	}
	100% {
		transform: translateY(0%);
		opacity: 1;
	}
}

.fadeInUp {
	animation: 1s fadeInUp-frames;
}
