html {
	background-image: url(../Static/fond_menu.png);
	background-size : 101% ;
}
body {
	font-family: Garamond;
	display: flex;
	flex-direction: column;
	height: 100vh;
	margin: 0;
	padding-bottom: 10%;
	
}

.menu {
	position: absolute;
	top: 5%;
	left: 5%;
	height: auto;
	width: 18%;
	background-color: white;
	color: black;
	display: flex;
	flex-direction: column;
	padding: 2rem;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	z-index: 10;
	font-size: 17pt;
}

.menu h2 {
	margin-top: 0;
	color: #333;
}

.menu ul {
	list-style: none;
	padding: 0;
}

.menu ul li {
	margin: 10px 0;
}

.menu ul li a {
	color: black;
	text-decoration: none;
}

.menu ul li a:hover {
	text-decoration: underline;
}

.submenu {
	margin-left: 1rem;
}

header {
	height: 70%;
	padding-top: 3%;
	padding-left: 37%; 
	padding-right: 13%;
	padding-bottom: 41%;
	background-color: transparent;
}

header img {
	position: relative;
	top: 0;
	transform: translateY(-10%);
	margin-left: 20px;
	max-height: 150%;
}


a {
    text-decoration: none;
	color:black;
}

@media (max-width: 1000px) {
    .menu {
        width: 20%;
        font-size: 12pt;
        padding: 1rem;
    }

    header {
        padding-left: 30%;
		padding-top: 7%;
        justify-content: flex-start;
    }

    header img {
        width: 120%;
        max-width: 150%;
        height: auto;
        margin: 2px;
    }
}
 
