/* Réinitialisation des styles par défaut pour garantir une base uniforme */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
html {
  font-family: "Open Sans", sans-serif;
}

a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-weight: bold;
}
