*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Open Sans";
}

html,body{
	height: 100%;
	background: #263238;
}

body{
	overflow-x: hidden;
	overflow-y: hidden;
}

.container{
	margin-top: 40px;
	text-align: center;
}

.container img{
	margin-bottom: 20px;
	width: 300px;
	height: 100px;
}

.container h2{
	font-size: 60px;
	font-weight: 400;
	color: white;
	text-transform: uppercase;
}

.container h3{
	font-size: 18px;
	font-weight: 300;
	color: white;
	text-transform: uppercase;
	margin-top: 20px;
}

.progress{
	width: 50%;
	transform: translate(50%);
	margin-top: 50px;
	margin-bottom: 20px;
}

.progress span{
	text-align: right;
	margin-right: 10px;
	font-weight: 600;
}

.relogio{
	width: 44%;
	transform: translate(64%);	
	color: white;
}

.contato{
	margin-top: 40px;
	color: white;
	text-align: center;
}

.contato h2{
	font-size: 14px;
	margin-bottom: 20px;
}

.contato .mail{
	margin-bottom: 5px;
}

.contato a{
	text-decoration: none;
	color: white;
}

footer{

	color: white;
}

@media screen and (max-width: 768px){
	
	.container h2{
		font-size: 50px;
	}

	.progress{
		width: 100%;
		transform: translate(0%);
	}

	.relogio{
		width: 60%;
		transform: translate(35%);
	}

	.contato h2{
		font-size: 18px;
	}

	footer{
		font-size: 12px;
	}
}