@charset "utf-8";

@font-face {
	font-family: 'Faulties Font';
	src: url('Faulties Font.TTF') format('truetype');
}

body {
	margin: 0;
	padding: 0;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: black;
	position: relative;
}

.coming-soon-container {
	position: relative;
}

.coming-soon {
	font-family: 'Faulties Font', sans-serif;
	font-size: 48px;
	color: white;
	opacity: 0;
	animation: fadeIn 1s forwards;
	animation-delay: 0.5s;
	text-align: center;
}

#dots {
	font-family: 'Faulties Font', sans-serif;
	font-size: 48px;
	color: white;
	position: absolute;
	left: calc(100% + 5px);
	top: 50%;
	transform: translateY(-50%);
}

.social-link {
	position: absolute;
	bottom: 10px;
	right: 10px;
	z-index: 1;
}

.link-icon {
	width: 40px;
	height: auto;
}

.link-icon:hover {
	filter: brightness(120%);
}

.about-link {
	font-family: 'Faulties Font', sans-serif;
	font-size: 24px;
	color: white;
	position: absolute;
	bottom: 10px;
	left: 10px;
	text-decoration: none;
	background-color: transparent;
	border: none;
	cursor: pointer;
}
.about-link:hover {
	text-decoration: underline;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@media only screen and (max-width: 768px) {
	.coming-soon {
		font-size: 24px;
	}
	
	#dots {
		font-size: 24px;
	}
}
