* {
	margin: 0;
	padding: 0;
	border: none;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

body {
	width: 100%;
	max-height: 100vh;
}

main#container {
	width: 80%;
	height: auto;
	margin: 100px auto 0;
}

.imagem_principal {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.texto_principal {
	width: 100%;
	height: auto;
	text-align: center;
	margin-top: 50px;
}

.link_site_oficial {
	color: #3399ff;
	text-decoration: none;
}

.link_site_oficial:hover {
	color: #0059b3;
	transition: .2s linear;
}

.icones_contato {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.icones_contato div {
	width: 40px;
	height: 40px;
	margin: 0 25px;
	background-color: #3399ff;
	border-radius: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.icones_contato div a i {
	color: white;
	font-size: 22px;
}

.icones_contato div:hover {
	background-color: #0059b3;
	transition: .2s linear;
}