* {
	box-sizing: border-box;
}


#countdown-wrapper {
	z-index: 1;
	position: relative;
	display: none;
	flex-direction: column;
}

.title {
	font-size: 40px;
	margin: 20px auto;
	text-align:center;
}

.countdown {
	display: none;
	align-items: center;
	justify-content: center;
}

.time {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 10px;
	padding:20px;
	background:#fff;
	-webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
	-moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
	box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
	border-radius: 5px;
}

.time h2 {
	margin: 0 0 10px;
	font-size: 48px;
}

.time small {
	font-size: 26px;
}

@media (max-width: 500px) {
	.title {
		font-size: 20px;
		margin: 20px auto;
	}

	
	.countdown {
		align-items: center;
	}

	.time {
		margin: 5px;
		padding:10px;
	}

	.time h2 {
		font-size: 28px;
		margin: 0;
	}

	.time small {
		font-size: 14px;
	}
}



