* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
	font-family: "Roboto", sans-serif;
	background: linear-gradient(to bottom, #1e6091 0%, #11284f 100%);
}

img {
	max-width: 100%;
}

.logo {
	max-width: 400px;
}

h1 {
	font-family: inherit;
	font-size: 100px;
	line-height: 100%;
	color: #fff;
	margin-top: 30px;
	margin-bottom: 10px;
	font-weight: 400;
}

.wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	padding: 0 15px;
}

.countdown {
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	text-align: center;
	display: flex;
}

.countdown-item span {
	display: inline-block;
	min-width: 60px;
	padding: 10px;
	font-size: 70px;
	font-weight: 900;
	margin: 0 5px;
	color: #e0d11c;
}

@media (max-width: 480px) {
	h1 {
		font-size: 50px;
	}

	.countdown-item span {
		font-size: 30px;
		padding: 0px;
	}

	.countdown {
		font-size: 14px;
	}
}
