body {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	margin: 0;
	padding: 0;
	background: #000;
}
.picture1{
	max-height: 500px;
	margin-left: 25px;
}
.countdown {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 100px 0;
}
.time-section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-family: sans-serif;
	padding: 0 30px;
	border-right: 1px solid #fff;
	user-select: none;
}
.time-section:last-child {
	border: none;
}
.count {
	font-size: 70px;
}
.units {
	font-size: 25px;
}

@media (max-width: 600px) {
	.countdown {
		flex-wrap: wrap;
	}
	.time-section {
		width: 50%;
		border: none;
	}
	.picture1{
		max-width: 85%;
	}
}