*{
	font-family: Helvetica;
	padding: 0;
	margin: 0;
}

nav{
	background-color: #000;
	height: 80px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	font-size: 25px;
	padding-top: 5px;
	padding-bottom: 5px;
}

nav ul{
	list-style: none;
	display: flex;
	/*gap: 2rem;*/
	padding: 0.2rem 1rem;
}

.nav-interno {
	padding-left: 6rem;
	padding-right: 12rem;
	gap: 3rem;
}

nav ul a{
	color: #f5f5f5;
	/*padding: 15px;*/
	gap: 1rem;
	text-decoration: none;
	font-size: 20px;
}

nav ul a:hover{
	color: #707F18;
	transition: 0.15s;
	/*border-bottom: 1px solid;*/
}

nav ul a img{
	padding-top: 6px;
}

/*  BODY    */

body{
	display: flex;
	flex-direction: column;
	background: #622F1A;

}

.meio-construcao{
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: sans-serif;
	color: #ccc;
	text-shadow: 1px 1px 10px #555;
	width: 100%;
	height: calc(100vh - 130px);
}

/*  FOOTER   */

footer {
	display: flex;
	align-content: center;
	justify-content: center;
    background-color: #000;
	color: #f5f5f5;
	width: 100%;
	height: 30px;
	margin: 0;
	padding-top: 10px;
	
	font-family: Helvetica;
	font-size: 12px;
	color: #f5f5f5;
	letter-spacing: 3px;
}


.link_footer{
	color: #999;
	text-decoration: none;
	text-shadow: 1px 1px 6px #555;
}
.link_footer:hover{	
	color: #707F18;
}