
/* ? ----- PORTADA ----- */
.portada {
	width: 100%;
	background: #EFEFEF;

	min-height: 100vh;
	position: fixed;
	top: 0;
	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: 100px;
	text-transform: uppercase;
	letter-spacing: 3px;
}

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

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



/* ? ----- MAIN ----- */
main {
	max-width: 1000px;
	margin: auto;
	width: 90%;
	padding: 60px 0;
	font-size: 18px;
	line-height: 28px;
	text-align: left;
}



/* ? ----- Cuenta Regresiva ----- */
#cuenta {
	background:#732C94;
	color:#FFF;
	display: flex;
	justify-content: center;
	padding: 0px 0 20px 0;
	
}

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

.simply-amount {
	display: block;
	font-size: 35px;
	font-weight: 700;
}

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


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



@media screen and (min-width: 480px) and (max-width: 599px) {
.simply-section {
	//background: #fff;
	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;
}

.simply-word {
	font-weight: 300;
	font-size: 20px;
}	
}

@media screen and (min-width: 320px) and (max-width: 479px) {
.simply-section {
	//background: #fff;
	width: 80px;
	height: 80px;
	margin: 0 0px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.simply-amount {
	display: block;
	font-size: 25px;
	font-weight: 700;
}

.simply-word {
	font-weight: 300;
	font-size: 16px;
}	
}
