/* 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{

  padding: 20px;
  border-left: rgb(14, 80, 96) solid 300px;
  border-right: rgb(14, 80, 96) solid 300px;
  background-color: rgba(38, 211, 226, 0.5);
}

/* CONTAINER 1 */
.container {
  max-width: auto;
  background-color: rgb(255, 255, 255);
  margin: 20px auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
}
.container p{
  margin: 15px;
  line-height: 1.4;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
}

.container h1{
  font-family: 'Dela Gothic One', cursive;  
  font-size: 28px;
  color: rgb(50, 50, 50);
  margin: 15px;
}
.img-reseau {
  width:auto;
  object-fit: cover;
  float: right;
  shape-outside: margin-box;
  margin: 0 20px 5px 0;
}

/* 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*/

