/* Styles de base pour le corps du document */
body {
  font-family: "Helvetica", Helvetica, Arial, sans-serif;
  color: #101010;
  line-height: 1.6;
}


h1, h2, h3, h4, h5, h6 {
  font-family: "Helvetica", Helvetica, Arial, sans-serif;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #333;
}

h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.4;
}

h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
}

h3 {
  font-size: 24px;
  font-weight: 100;
  line-height: 1.2;
}

h4 {
  font-size: 20px;
  font-weight: 100;
  line-height: 1.2;
}

h5 {
  font-size: 18px;
  font-weight: 100;
  line-height: 1.2;
}

h6 {
  font-size: 16px;
  font-weight: 100;
  line-height: 1.2;
}

/* Styles pour les paragraphes */
p {
  font-size: 14px;
  margin-bottom: 10px;
}

/* Styles pour les liens */
a {
  color: #004289;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Autres styles d'éléments */
ul, ol {
  margin-bottom: 20px;
}

li {
  margin-bottom: 10px;
}


/* Styles de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.home {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center; 
}

.legal-content {
  text-align: left;
  max-width: 1000px; 
  margin-left: auto;
  margin-right: auto;
  padding: 20px; 
}


#lottie {
  width: 50vmin;
  height: 15vmin;
  margin-bottom: 20px; 
}

.tagline {
  font-family: "Circular Std-Medium", Helvetica;
  font-weight: 500;
  color: #101010;
  font-size: 44px;
  letter-spacing: 1.32px;
  line-height: 61.6px;
  margin-bottom: 150px;
}

.tagline .span {
  color: #007E8A;
}

.coming-soon {
  font-family: "Circular Std-Medium", Helvetica;
  font-weight: 500;
  color: #101010;
  font-size: 24px;
  letter-spacing: 0.72px;
  line-height: 33.6px;
}

.store-logos {
  margin-top: 30px; 
  display: block;
  margin-left: auto; 
  margin-right: auto;
  width: 60%;
}

.footer {
  position: fixed;
  width: 100%;
  height: 50px;
  bottom: 0;
  left: 0;
  background-color: #000000;
  text-align: center;
}

.footer .copy {
  line-height: 50px;
  font-family: "Circular Std-Light", Helvetica;
  font-weight: 300;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.14px;
  white-space: nowrap;
}

#copyright a {
  color: #ffffff; /* Met la couleur du lien en blanc */
  text-decoration: none; /* Supprime le soulignement */
}

/* Styles pour les tablettes */
@media (max-width: 768px) {
  .tagline {
    font-size: 32px;
  }

  .coming-soon {
    font-size: 18px;
  }

  .footer .copy {
    font-size: 12px;
  }
}

/* Styles pour les téléphones mobiles */
@media (max-width: 480px) {
  .tagline {
    font-size: 24px;
  }

  .coming-soon {
    font-size: 14px;
  }

  .footer .copy {
    font-size: 10px;
  }
}
