@charset "utf-8";
/* CSS Document */

/******************** FONTES ********************/

@font-face {
	font-family:'GSF_72_medium';
	src:url('fontes/GoogleSansFlex_72pt-Medium.ttf');
}

/******************** GERAL ********************/

* { /* RESET */
	margin:0;
	padding:0;
	border:0;
	box-sizing:border-box;
	outline:none;
	font-family:'GSF_72_medium';
}

body{
	background-image:url(img/bg_body.png);
}

/******************** HOME ********************/

#box {
	margin: 0 auto;
	width: 100%;
	height: 100vh;
	/* interno */
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

#box > .logo {
	width: 275px;
}

#box > .texto {
	margin-top: 50px;
	font-size: 1.5em;
	color: #4c1b09;
	text-align: center;
}