@charset "utf-8";

@font-face {
	font-family: 'Faulties Font';
	src: url('Faulties Font.TTF') format('truetype');
}

body {
	background-color: black;
	margin: auto;
}

.title-link {
	position: absolute;
	font-family: 'Faulties Font', sans-serif;
	font-size: 60px;
	color: white;
	top: 10px;
	left: 50%;
	translate: -50%;
	text-align: center;
	text-decoration: none;
	background-color: transparent;
	border: none;
	cursor: pointer;
	text-shadow: 0px 0px 0px gray;
	animation: fadeIn 1s forwards;
}
.title-link:hover {
	text-shadow: 0px 0px 20px white;
}

.game-description {
	font-family: 'Faulties Font', sans-serif;
	color: white;
	text-align: center;
	margin-left: 30%;
	margin-right: 30%;
	font-size: 24px;
	letter-spacing: 1px;
}
.game-signature {
	font-family: 'Faulties Font', sans-serif;
	color: white;
	text-align: right;
	margin-left: 30%;
	margin-right: 30%;
	font-size: 24px;
	letter-spacing: 1px;
}
.text-container {
	position: absolute;
	top: 100px;
	animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
		transform: translateY(0);
	}
	to {
		opacity: 0;
		transform: translateY(20px);
	}
}

@media only screen and (max-width: 768px) {
	.game-description {
		font-size: 16px;
		margin-left: 5%;
		margin-right: 5%;
	}
}