.footer{
  position: fixed;
  bottom: 10px;
  left: 10%;
  width: 80%;
  padding:20px 0;
  display:flex;
  justify-content:space-around;
  background-color:#0a3d62;
}
.footer a, .footer p{
  font-family:monospace;
  font-size:16px;
  color:white;
}
.footer i{
  font-size:30px;
}
@media screen and (max-width:768px){
  .footer{
    height:auto;
  }
  .footer a, .footer p{
    font-size: 10px;
  }
  .footer i{
    font-size:15px;
  }
}
.bottom-div {
    position: fixed;
    bottom: 0;
    width: 100%; /* Optionnel : pour occuper toute la largeur de l'écran */
    background-color: #fff; /* Ajoutez votre couleur de fond souhaitée */
    padding: 10px; /* Ajoutez un remplissage pour un meilleur aspect visuel */
    border-top: 1px solid #ccc; /* Optionnel : ajoute une bordure supérieure */
}
