* {
  box-sizing: border-box;
}
body {
    font-family: 'Muli', sans-serif;
    margin:0px;
}

.menu { 
  position: absolute;
  float: left;
  text-align:left;        
  margin-top:7px;               /* Positionné à 20px du bord de la fenêtre – position équivalente au bord tournant */
  margin-left: 20px;
  left:20px;              /* Positionné à 20px du bord de la fenêtre – position équivalente au bord tournant */
  width:25%;              /* Largeur du menu correspondant à 20% de l'élément parent (la page) */
  background-color: white,transparent(30%);

}

.menuitem {
  padding: 3px;
  max-width: 100%;
  background-color:white;
  color:black;
}

body {
color: black;
}

h1 {
font-weight: 700;
text-decoration-color: white;
}

h2 {
  text-decoration: none;
}

a:link {
  text-decoration: none;
  font-weight: regular;
  color: rgb(0, 0, 0);
}

a:visited {
  color: rgb(0, 0, 0);
}

a:hover{
  font-weight: bolder;
  text-decoration:none;
  color:black;
  font-weight:bold;
}

.conteneur {
padding: 20px;
color:white;    /* Élément positionné par rapport à son parent (la page) */
text-align: center;
font-size: 16px;
float: left;
padding: 0 20px;
position:relative;
margin-top: 2%;
 
      /* Largeur du calque : les 75% restants disponibles */
}
/*overlay*/
.elements {
  position: relative;
  width: 100%;
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: rgba(0, 0, 0, 0.664);
}

.elements:hover .overlay {
  opacity: 1;
}

.text {
  color: white;
  position: absolute;
  top: 50%;
  left:50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1.3em;
}

.hola {
  background-color: #f5fcff;
  color: black;
  text-align:center;
  position:fixed;
  top: 0px;
  width: 100%;
  padding:10px;
  font-size: 18px;
  }   

.footer {
background-color: #ffe3e7;
color: black;
text-align:center;
position:fixed;
bottom: 0px;
width: 100%;
}

.fa {
  padding: 10px;
  font-size: 20px;
  width: 30px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}

/* Mobile */
@media screen and (max-width:750px){
    .menu, .menuitem {
        width: 100%; /*maquette fluide*/
        display:none;
    }

.conteneur {
    width: 100%;
}
.text{
    font-style: black;
    font-size: 42px;
}

p{
    font-size: 1em;
    line-height: 1.2em;
}

h1{
  font-size:1.2em;
  line-height: 1.1em;
}

h2{
  font-size:1.2em;
  line-height: 1em;
}


    .infos {
        width: 100%;
        text-align: left;
        padding: 20px;
        margin-top: 20px;
    }
.footer {
font-size: 0.9em;
  padding:0px;
}

}


/* tablette 
@media screen and (max-width:750px) and (max-width:1200px){
  .menu {font-size: 20px;
  }
.infos {
  display:none;
    }
*/

/* desktop */
@media screen and (min-width:1200px) {
.menu {
  top: 6%;
    font-size: 1em;
  }
p{
    font-size: 1em;
    line-height: 1.3em;
}

h1{
  font-size:1.2em;
  line-height: 1.4em;
}

h2{
  font-size:1em;
  line-height: 1.2em;
}

.conteneur {
left:30%;
width: 70%; 
}

.infos{
  display:none;
}
.text{
  font-size:60px;
  font-style: black;
}

.footer {
font-size: 1.1em;
padding:0px;
}