body{
	margin: 0;
	padding:0;
	box-sizing: border-box;
	width: 100%;
	height: 100vh;
	background:url(../images/header-bg.jpg) no-repeat 0px 0px;
	background-size:cover;
	position:relative;
	font-family: 'Asap', sans-serif;
}

main{
	display: grid;
	place-items: center;
	width: 100%;
	height: 100vh;	
}

.content{
	display: grid;
	grid-template-areas: "img"
						 "ende"
						 "social";
	grid-row-gap: 40px
	
}

.content .logo{
	display: flex;
	width: 100%;
	justify-content: center;
}

.content .social{
	grid-area: social;
	display: flex;
	width: 100%;
	justify-content: space-evenly;
}

.content .endereco{
	grid-area: ende;
	text-align: center;
}
.content h2{
	color:#242021;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 1.2em;
	
}

.content .img-logo{
	grid-area: img;
}