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

/*body {
	background: #030b38;	
	font-family: 'Work Sans', sans-serif;

*/}



/* ? ----- PORTADA ----- */
.portada {
	width: 100%;
	background: #030b38;
	min-height: 100vh;
	position: fixed;
	top: -50px;
	left: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	transition: .5s ease-out all;
	
}

.portada.oculta {
	transform: translateY(100%);
}

.portada .header {
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 3px;
	
	
	
}

.portada .header .logotipo {
	font-size: 20px;
 	margin-bottom: 20px;
	
	 
	
}

.portada .header .mensaje {
	font-size: 30px;
	font-weight: 600;
    
}







/* ? ----- Cuenta Regresiva ----- */
#cuenta {
	display: flex;
	justify-content: center;
	margin-bottom: 10px;
}

.simply-section {
	background: #030b38;
	width: 80px;
	height: 80px;
	margin: 0 20px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	
}

.simply-amount {
	display: block;
	font-size: 30px;
	font-weight: 700;
	color:red

}

.simply-word {
	font-weight: 300;
	font-size: 25px;
	font-weight: 700;
	color:aliceblue
}


/* ? ---------------------------- */



