/* Styles par défaut pour les écrans larges */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 1rem; /* Utilisation d'unités relatives pour la taille de police */
}

a {
  text-decoration: none !important;
}

.titre-page {
  font-size: 1.5rem; /* Utilisation d'unités relatives pour la taille de police */
  font-weight: bold;
  margin-bottom: 20px;
}

.container {
  display: flex;
  flex-direction: column;
  width: 80%;
  margin: 0 auto;
  height: 100vh;
}

.d-flex > div {
  width: 100%;
}

img[src="logo80px.webp"] {
  object-fit: cover;
  width: 80px;
  height: 40px;
}

#float-video {
  display: inline-block;
}

#float-video-header {
  width: 100% !important;
  max-width: 300px !important;
}

/* Styles pour les écrans très larges (min-width: 1200px) */
@media only screen and (min-width: 1200px) {
  .container {
    width: 70%;
  }
  body {
    font-size: 1.125rem; /* Utilisation d'unités relatives pour la taille de police */
  }
}

/* Styles pour les tablettes (768px - 1024px) */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    width: 90%;
  }
  body {
    font-size: 0.875rem; /* Utilisation d'unités relatives pour la taille de police */
  }
  .video-mobile {
    display: block;
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 1000;
  }
}

/* Styles pour les appareils mobiles */
@media only screen and (max-width: 768px) {
  .container {
    width: 90%;
  }
  body {
    font-size: 0.75rem; /* Utilisation d'unités relatives pour la taille de police */
  }
  #float-video {
    width: 220px !important;
    height: 130px !important;
  }
  #float-video video {
    width: 100% !important;
    height: 100% !important;
  }
  #float-video-header {
    width: 220px !important;
  }
}

/* Styles pour les écrans très petits (max-width: 480px) */
@media only screen and (max-width: 480px) {
  .container {
    width: 100%;
  }
  body {
    font-size: 0.625rem; /* Utilisation d'unités relatives pour la taille de police */
  }
}
