/* DÉBUT STYLE ÉCRITURE */
@import url('https://fonts.googleapis.com/css2?family=Fuggles&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Yatra+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300&display=swap');
/* FIN STYLE ÉCRITURE */

/* DÉBUT HEADER*/
nav {
    display: flex;
    align-items: center;
    background-image: url(../img/fond.jpg);
    border-bottom: 10px solid rgb(118, 118, 118);
}
nav h1 {
    color: rgb(255, 255, 255);
    font-family: 'Fuggles', cursive;
    font-size: 150px;
    margin-left: 100px;
} 
.onglets {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.onglets button {
  outline: none;
  cursor: pointer;
  border: none;
  padding: 0.9rem 2rem;
  font: inherit;
  display: inline-block;
  letter-spacing: 0.05rem;
  font-weight: 700;
  font-size: 17px;
  border-radius: 2px;
  overflow: hidden;
  background: linear-gradient(90deg, #0074e4, #00a4e4);
  color: #fff;
  transition: background-color 0.4s, color 0.4s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  margin-right: 80px;
}
@keyframes buttonHover {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
.onglets button:hover {
  background-color: #66ff66;
  color: #242424;
  animation: buttonHover 0.6s ease-in-out;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
}
/* FIN HEADER*/


/* DÉBUT MAIN */
main h1{
  font-family: 'Dela Gothic One', cursive;  
  font-size: 35px;
  text-align: center;
}

main{
  background-color: rgb(255, 255, 255);
   min-height: 120vh;
   margin: 0;
   border-left: rgb(14, 80, 96)solid 300px;
   border-right: rgb(14, 80, 96) solid 300px;
}
.principal p a{
  font-family: 'Jost', sans-serif;
  margin-left: 350px;
  font-size: 18px;
  text-decoration: none;
  text-align: center;
}

/* FIN MAIN */

/*DÉBUT FOOTER*/
.footer {
  background-image: url(../img/fond.jpg);
  color: rgb(62, 62, 62);
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px 50px;
  border-top: 10px solid rgb(118, 118, 118);
}

.footer a{
  color: rgb(62, 62, 62);
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
}

.footer p{
  color: rgb(255, 255, 255);
  font-family: 'Yatra One', cursive;
  text-align: center;
}

.img-sio {
  width: 25%;
  border-radius: 10px;
  margin-right: 70px;
}
.img-link{
width: auto;
}
/*FIN FOOTER*/


