/* Global Styles */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	height: 100vh;
	color: #fff;
	background: #333;
	overflow: hidden;
	font-family: 'Roboto', sans-serif;
}


/* Main Styles */

main {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: linear-gradient(to right, rgba(15, 32, 39, 0.6), rgba(32, 58, 67, 0.6), rgba(44, 83, 100, 0.6)), url("../images/bg-1.jpg");
	background-size: cover;
	background-repeat: no-repeat;
}

.logo {
	height: 140px;
	margin-bottom: 1.4rem;
}

.title {
	font-weight: 900;
	font-size: 2.8rem;
	line-height: 78px;
	text-transform: uppercase;
}

.subtitle {
	font-size: 2.4rem;
	line-height: 59px;
	text-transform: uppercase;
	margin-bottom: 2rem;
}


/* Countdown */

.countdown {
	font-size: 3.6rem;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.countdown div {
	padding: 1.25rem 3.2rem;
}

.countdown span {
	display: block;
	font-size: 1.7rem;
	color: #fff;
	opacity: 0.6;
}

/* 404 Page */
.notFound {
	background: none;
}

.container-404{ 
	min-height: 100vh;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
   }
   
   .illustration {
	   height: 700px;
	   width: 80%;
   }




/* Media Queries */

@media only screen and (max-width: 500px) {
	.container {
		margin: 0 1rem;
	}
	/* Logo */
	.logo {
		height: 100px;
		margin-bottom: 2rem;
		line-height: 0;
	}
	.title {
		font-size: 1.5rem;
		margin-bottom: 2rem;
		line-height: 0;
	}
	.subtitle {
		font-size: 1.3rem;
		line-height: 0;
	}
	/* Countdown */
	.countdown {
		font-size: 1.8rem;
		display: flex;
		flex-direction: column;
		padding: 0;
	}
	.countdown span {
		font-size: 1.8rem;
	}
}