@charset "UTF-8";
/* CSS Document */
<style> :
 header {
 position: static;
 top: 0;
}
.container {
	width: auto;
	margin: 0px;
	padding-right: 20px;
	padding-left: 20px;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
}
.nav {
	display: flex;
	justify-content: space-between;
	width: 100%;
	background-color: #000;
	color: #FFF;
	height: 100px;
	align-items: center;
}
.logo {
	font-size: 1.3rem;
	font-weight: bold;
	color: #FFF;
	text-align: left;
}
.burger {
	display: none;
	cursor: pointer;
	padding-left: 20px;
	color: #FFF;
	padding-right: 20px;
	padding-top: 10px;
}
.nav-links {
	display: flex;
	padding-top: 7px;
}
.nav-links a {
	text-decoration: none;
	font-weight: 500;
	color: #CCC;
}
a:hover {
	color: #F3C;
}
/* MENU MOBILE */
.mobile-menu {
	display: none;
	flex-direction: column;
	text-align: center;
	background-color: #000;
	border-top: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	width: 100%;
	color: #FFF;
	position: absolute;
	z-index: 100;
	padding-top: 5%;
	padding-right: 0;
	padding-bottom: 10%;
	padding-left: 0;
	line-height:300%;
}
.mobile-menu a {
	padding: 0.7rem 0;
	text-decoration: none;
	color: #FFF;
	font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
 .nav-links {
 display: none;
}
 .burger {
 display: block;
}
}
</style>
