.content{
    min-height: 80vh;
}
#navbarNav a:hover {
    border-radius: 20px;
    background: #FFDBE3
  }
  
  h1,h2,h3,h4,h5,h6,li {
    font-family: 'opake', sans-serif !important;
    font-weight: 900;
    font-style: normal;
  }

  p li {
    font-family: 'poppins', sans-serif !important;
    font-style: normal;
  }

  /* tous liens lors du survol dans la balise nav */
  
  .container {
    max-width: 1340px;
    width: 100%;
    margin: 0;
    margin: auto;
  }
  
  ul {
    list-style: none;
  }
  
  .navbar {
    background-color: #FFF!important;
    color: #fff;
    border: 10px;
  }
  
  .navbar a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    margin: 0 10px;
    font-size: 24px;
    float: left;
    line-height: 30px;
    /* interligne */
    padding: 0 10px;
  }

  @media (max-width: 768px) {
    .navbar a {
      width: 75%;
    }
  }
  
  .collapse {
    display: flex;
    justify-content: end;
  }
  
  /* Style pour le menu burger sur les petits écrans */
  .navbar-toggler {
    border: none;
    background-color: transparent;
    color: rgb(0, 0, 0);
    font-size: 24px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.068);
  }
  
  /* Style pour l'icône du menu burger */
  .navbar-toggler span {
    display: block;
    height: 2px;
    background-color: rgb(0, 0, 0);
    margin: 6px 0;
    transition: all 0.2s ease-in-out;
  }
  
  /* Style pour l'icône du menu burger en mode actif */
  .navbar-toggler.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  
  .navbar-toggler.active span:nth-child(2) {
    opacity: 0;
  }
  
  .navbar-toggler.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  
  .logo {
    width: 20%;
  }
  
  .navbar-brand {
    width: 400px;
  }
  
  .navbar #button {
    color: #000;
    border: 2px solid black;
    border-radius: 20px;
  }
  
  /* button déconnexion*/ 
  .nav-link{
    color: #000 !important;
  }
  .nav-item #button {
      color: #000;
      border: 2px solid white;
      border-radius: 20px;
      margin:5px;
  }
  
  .nav-item #button:hover {
    border-radius: 20px;
    background-color: #c28cf165;
  }

  footer {
    position: relative;
    background-color: #F9E7D2;
    padding: 20px;
    text-align: center;
}

.reseaux {
    display: flex;
    column-gap: 25px;
    margin-bottom: 10px;
    height: 50px;
    justify-content: end;
    align-items: center;
}

.icons {
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    outline: 2px solid#FF99B1;
    transition-property:
        outline offset, outline-color background-color;
    transition-duration: 0, 25s;
    font-size: 24px;
    margin-left: 20px;
    align-items: center;
    justify-content: center;
}

.icons:hover {
    outline-offset: 4px;
}
footer a{
  color: #FFF;
}

.icons i {
    width: 60px;
    color:#FF99B1;
}

.icons i:hover  {
    animation: shake 0.25s;
    color: #FE396A;
}

@keyframes shake {
    10% {
        transform: rotate(15deg);
    }

    20% {
        transform: rotate(-15deg);
    }

    30% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-15deg);
    }

}

p {
    color: #777777;
    font-size: 14px;
    display: flex;
    margin: 0;
    justify-content: flex-end;
}

.cv {
  background-color: #F9E7D2;
}
.social-icons{
  position: absolute;
  bottom: 30px;
  left: 30px;
}
/* Animation de flottement continu pour l'icône SVG */
.icon-3d {
  display: inline-block;
  transition: transform 0.3s ease-in-out;
  animation: float 2s ease-in-out infinite; /* Réduire la durée à 2s pour un mouvement plus rapide */
  width: 130px;
}

@keyframes float {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-20px); /* Augmenter l'amplitude à 20px */
  }
}

@media (max-width: 400px) {
  .icon-3d {
      width: 80px; /* Réduire la taille de l'icône sur les petits écrans */
  }
  .social-icons{
    top: 10px;
    left: 10px;
  }
  .reseaux{
    column-gap: 10px;
  }
}