#countdownPage{
	color: #fff;
	height: 50vh;
	padding-top: 10vh;

	width: 70vw;
}


#timerSlogan{
	font-weight: bold;
	padding: 10px 3vw;
	font-size: 28px;
	
}

#countdownTimer{
	display: flex;
	margin: auto;
	flex-flow: row wrap;

	/* Then we define how is distributed the remaining space */
	justify-content: space-around;	
}


.timerElement{
	margin: auto;  /* Magic! */
	width: 12vw;
	
}

.timerValue{
	font-size: 10vw;
	font-weight: bold;
	line-height: 0.85em;	
}


.timerUnit{
	text-align: center;
	font-size: 18px;	
}



/* Смартфоны (узкая ширина экрана) */
@media screen and (max-width: 767px) {

#countdownPage{

	width: 95vw;
}	
	
	#timerSlogan{
		font-size: 14px;
		
	}

	
}


