/* gox-style.css - Exemple de contenu */

/* Réinitialisation et styles globaux */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #ebebeb;
  font-family: "OpenSans", sans-serif;
}

/* Styles de la navigation */
.navigation {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navigation a {
  color: inherit;
  text-decoration: none;
}

.navigation a.active,
.navigation a:hover {
  background-color: #2faecf;
  color: #000;
  padding: 8px 16px;
  border-radius: 4px;
}

/* Styles des conteneurs */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer */
footer {
  text-align: center;
  padding: 16px 0;
  background-color: #000;
}

/* Autres styles personnalisés */
.img-fluid {
  max-width: 100%;
  height: auto;
}

