/***** palette de couleurs *****/
:root {
    --noir: #000000;
    --saumon: #FF6B5C;
    --terre:#C0B5A2;
  }

/***** body *****/
body {
    /*couleur de fond*/
    background-color: var(--terre);
    /*police */
    font-family: Calibri;
  }

/***** vidéo *****/
#video  {
     display: block;
     margin: auto auto;
     height: 50%;
     border: 2px solid var(--sable);
     border-radius: 10px;
}   
img{
  display: block;
  margin: auto auto;
}
#video2  {
  display: block;
  margin: auto auto;
  height: 80%;
  border: 2px solid var(--sable);
  border-radius: 10px;
}   
table {
      margin-left: auto;
      margin-right: auto;
}   
    
#slogan,p{
  font-family: 'Pacifico', cursive;
  text-align: center;
  
}
p{font-size:large}

.entier{
  width: 100%;
}

footer{
  text-align: center;
}
.slogan {
  font-size: 3rem;
  color: var(--noir);
  white-space: pre;
}

.letter {
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.active {
  transform: scale(1.8);
  color: var(--saumon);
}
.back-home {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
}

.back-home img {
  width: 150px; /* ou la taille que tu veux */
  height: auto;
  cursor: pointer;
}
#menuBtn {
  width: 40px;
  cursor: pointer;
  padding: 10px;
  position: fixed;
  z-index: 2;
  transition: opacity 0.3s;
}

#sideMenu {
  height: 100%;
  width: 250px;
  position: fixed;
  top: 0;
  left: -250px;
  background-color: var(--vert-foncé);
  color: white;
  overflow-x: hidden;
  transition: 0.3s;
  padding-top: 60px;
  z-index: 3;
}

#sideMenu a {
  padding: 10px 20px;
  display: block;
  color: white;
  text-decoration: none;
}

#sideMenu a:hover {
  background-color: #575757;
}

.closeBtn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background-color: rgba(0, 0, 0, 0);
  z-index: 2;
}
