@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: 'Pixeled';
    src: url('../fonts/Pixeled.woff2') format('woff2'),
         url('../fonts/Pixeled.woff') format('woff');
    
	font-weight: normal;
    font-style: normal;
	
	font-display: swap;
}	
	
	
body {
	background: url('../img/frame_in.png') no-repeat center center/cover;
	height: 100vh;
	color: #bd4430;
	overflow: hidden;
}

.container-fluid {
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	overflow: hidden;
}
.top-bar {
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 20px;
}
.slogan {
	text-align: center;
	font-size: 2.3rem;
	font-family: 'JetBrains Mono', monospace;
	line-height: 2.5rem;
	
}
.launch {
	font-size: 5rem;
	color: #f1dfa2;
	text-align: center;
	font-family: 'Pixeled', sans-serif;
	font-weight: 300;
	line-height: 10rem;
	
}
.loader {
	width: 250px;
	height: 250px;
	margin-top: 5%;
}
.bottom-bar {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
}

.logo-container {
	position: absolute;
	bottom: 20px;
	left: 20px;
}

.logo {
	width: 300px;
	height: 293px;
}
.social-container {
	position: absolute;
	bottom: 20px;
	right: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.social-icons img {
	width: 30px;
	margin: 0 5px;
}
.email {
	background: #bd4430;
	color: white;
	padding: 10px 20px;
	border-radius: 20px;
	margin-top: 10px;
}

.email a {
	color: white;
	text-decoration: none;
}

a {
	text-decoration: none;
}

a:visited {
	text-decoration: none;
	color: inherit;
}

.text-shadow {
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    }

/* MEDIA QUERIES */


@media (min-width: 1200px) and (max-width: 1399.98px) {
	
	.logo {
		width: 50%;
		height: auto;
	}
	
}


@media (min-width: 1024px) and (max-width: 1199.98px) {
	
	.container-fluid {
		justify-content: space-around;
	}	
	
	.launch {
		font-size: 5rem;
		line-height: 7rem;
		margin-top: 5%;
		
	}	
	
	.loader {
		width: 150px;
		height: 150px;
		margin-top: 5%;
	}	
	
	.logo {
		width: 30%;
		height: auto;
	}
	
}


@media (min-width: 768px) and (max-width: 1023.98px) {
		
	.loader {
		width: 150px;
		height: 150px;
		margin-top: 5%;
	}	
	
	.logo {
		width: 30%;
		height: auto;
	}
	
}



@media (max-width: 767.98px) and (orientation: landscape) {
	
	.loader {
		display: none;
	}

	.launch {
		margin-top: 5%;
		
	}


}

@media (min-width: 576px) and (max-width: 767.98px) {
	
	.container-fluid {
		justify-content: space-around;
	}		
	
	.launch {
		font-size: 4rem;
		line-height: 8rem;
		
	}	
	
	.loader {
		width: 150px;
		height: 150px;
		margin-top: 5%;
	}	
	
	.logo {
		width: 30%;
		height: auto;
	}
	
}


@media (max-width: 575.98px) {
	
	.container-fluid {
		height: auto;
		overflow: auto;
	}	
	
	.slogan {
		font-size: 1.5rem;
		line-height: 1.7rem;
	}
	
	.slogan p {
		margin-bottom: 5px;
	}
	
	.launch {
		font-size: 2rem;
		line-height: 4rem;
		margin-top: auto;
		
	}
	.loader {
		width: 150px;
		height: 150px;
		margin-top: auto;
	}	
	
	.logo {
		width: 30%;
		height: auto;
	}
	
	.logo-container {
		left: 10px;
	}	
	
	.social-container {
		right: 10px;

	}	
	
}


