/* CSS pour centrer la carte */
body {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 20px;
}

/* CSS pour la carte */
.card2 {
    width: 100%; /* Modification de la largeur à 100% */
    max-width: 710px; /* Limiter la largeur maximale à 500px */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    background-color: rgb(255, 255, 255);
    margin-top: 20px;
    border: 2px solid black;
    box-shadow: 0 2px 6px 0 rgb(255 255 255);
  }

  .banner {
  width: 100%;
  height: 150px; /* Ajustez la hauteur selon vos besoins */
  background-image: url('assets/img/logo2.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;  }


/* CSS pour le logo */
.card2 img {
    max-width: 100%;
    height: auto;
    margin-bottom: 50px;
  }


  .social-links {
    margin-top: 113px !important;
    text-align: center !important;
  }
  
  .social-links a {
    display: inline-block;
    font-size: 24px;
    color: #3b3b3b;
    margin-right: 10px;
  }
  
  .social-links a:hover {
    color: #118a45;
  }

/* CSS pour la carte */
.card {
  width: 100%; /* Modification de la largeur à 100% */
  max-width: 500px; /* Limiter la largeur maximale à 500px */
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-align: center;
}


/* CSS pour les boutons de la barre de navigation */
.navbar {
  display: flex;
  flex-wrap: wrap; /* Permet le retour à la ligne des boutons sur petits écrans */
  justify-content: space-between;
  margin-top: 20px;
}

.navbar button {
  padding: 10px 20px;
  border: none;
  background-color: #3b3b3b;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 10px; /* Espacement entre les boutons sur petits écrans */
  width: 100%; /* Utilisation de 100% de la largeur sur petits écrans */
  max-width: none; /* Réinitialisation de la limite de largeur maximale */
}

/* CSS pour le deuxième card et les publications */
.content-card {
  width: 100%; /* Modification de la largeur à 100% */
  max-width: 460px; /* Limiter la largeur maximale à 460px */
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.publication {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.publication-info {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.publication-info img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
}

.publication-photo {
  width: 100%;
  margin-bottom: 10px;
}

.like-button,
.share-button {
  display: inline-block;
  padding: 5px 10px;
  background-color: #ccc;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 10px;
}


#video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }