html {
	background-image: url(../Static/fond.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: 32%; 
	padding-right: 13%;
	padding-bottom: 42%;
	background-color: transparent;
}

h1{
	font-size: 18pt;
	padding-left: 1%;
	line-height: 1.15;
}
h3{
	font-size: 18pt;
}

p{
	font-size: 18pt;
}


table{
	padding-bottom: 0%;
}
.photos img {

	width: 170px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover; 
	
}
a {
    text-decoration: none;
	color:black;
}
@media (max-width: 768px) {
	.menu {
	  width: 40%;
	  font-size: 12pt;
	  padding: 1rem;
	}
  
	header img {
	  max-height: 120%;
	}
	
  }