html, body {
	padding: 0;
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	min-height: 100vh;
	min-width: 100vw;
	font-size: 20px;
}

.background {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	z-index: 0;
}

.container {
	display: flex;
	background-image: url(tech-3041437.jpg);
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center center;
	width: 100vw;
	height: 100vh;
}

.sidebar {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1;
	background-color: rgba(0, 0, 0, 0.4);
	border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.logo {
	max-width: 350px;
	display: block;
	margin: 0 auto;
	width: 100%;
	align-self: center;

}

#countdown {
	-ms-align-self: center;
	align-self: center;
	margin-top: 50px;

}

#countdown span {
	font-size: 2rem;
	color: rgba(255, 255, 255, 0.9);
}


.days-unit,
.hours-unit,
.minutes-unit,
.seconds-unit {
	font-size: 0.8rem !important;
	margin-right: 15px;
	margin-left: 3px;
	text-transform: uppercase;
}

.main {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex: 3;
}

.main h1 {
	display: block;
	background-color: rgba(0, 0, 0, 0.4);
	width: 100%;
	color: rgb(255, 255, 255);
	text-align: right;
	align-self: flex-end;
	font-size: 4.5rem;
	margin-right: 30px;
}

h1 span {
	color: #1975BB;
}

@media (max-width: 1304px) {
	html, body {
		font-size: 16px;
	}

	.main h1 {
		font-size: 3.5rem;
	}
}

@media (max-width: 992px) {
	html, body {
		font-size: 14px;
	}

	.sidebar {
		flex: 2;
	}
}
@media (max-width: 768px) {
	.container {
		flex-direction: column;
	}

	.sidebar {
		flex: 4;
		max-width: auto;
	}

	.main {
		flex: 1;
	}

	.main h1 {
		font-size: 2rem;
	}
}

@media (max-width: 600px) {
	html, body {
		font-size: 10px;
	}

	.main h1 {
		font-size: 3.5rem;
	}
}


