body {
  font-family: "Inter", sans-serif;
  line-height: 150%;
  margin: 0;
  padding: 0;
}

/* Couleur du lien standard */
a {
  color: inherit; /* Cette propriété fait en sorte que les liens utilisent la couleur de texte de l'élément parent */
  text-decoration: none; /* Aucun soulignement par défaut */
}

/* Soulignement du lien au survol */
a:hover {
  text-decoration: underline; /* Ajoute un soulignement au survol */
}

/* Couleur du lien après avoir été visité */
a:visited {
  color: inherit; /* Utilise la même couleur que le texte normal pour les liens visités */
}

header {
  background: linear-gradient(to right, #0079fc, #1fd9e6);
  color: white;
  padding: 10px;
  text-align: left;
}

.header-content {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 50px; /* Ajustez la taille du logo ici */
  margin-right: 15px; /* Espace entre le logo et le titre */
}

header h1 {
  margin: 0;
}

h3 {
  color: #0079fc;
}

footer {
  background: linear-gradient(to right, #0079fc, #1fd9e6);
  color: white;
  padding: 10px;
  text-align: left;
}

footer p {
  margin: 0;
}

.main-title {
  width: 80%;
  margin: auto;
  background-color: #000000;
  color: white;
  text-align: center;
  padding: 10px;
  margin-top: 10px;
  border-radius: 25px;
}

.cgu-content {
  width: 80%;
  margin: auto;
  background-color: white;
  padding: 20px;
}

.cgu-content p ul li {
  text-align: justify;
}
li {
  margin-top: 10px;
}

.cgu-content article h3 {
  font-weight: bold;
}

.cgu-content article p p > ul > li {
  text-align: justify;
  margin-top: 10px;
}

table {
  border: thin solid #0079fc;
  border-collapse: collapse;
  width: 95%;
}
th {
  border: thin solid #0079fc;
  padding: 5px;
}
td {
  border: thin solid #0079fc;
  padding: 5px;
  text-align: left;
}
