@import url("00_main.css");

header {
	background-color: white;
	padding: 0.6% 0;
	border-radius: 10px;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

header nav ul {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 3rem;
}

header nav ul li {
	display: flex;
	align-items: center;
	margin: auto;
	height: 100%;
	width: auto;
}

header nav ul li a img {
	height: 80%;
	width: auto;
}

header nav ul li a {
	color: var(--colore-1);
	transition: color 0.5s ease-in-out;
	font-size: 1.5rem;
	font-weight: bold;
	text-decoration: none;
	display: flex;
	align-items: center;
	height: 100%;
}

header nav ul li a:hover {
	color: var(--colore-4);
	transition: color 0.2s ease-in-out;
}
