/* Styles communs à toutes les pages */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background-color: #f2f2f2;
  padding: 10px;
  text-align: center;
}

nav {
  text-align: center;
}

nav a {
  display: inline-block;
  margin-right: 10px;
  text-decoration: none;
  color: #333333;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ff0000;
}

main {
  padding: 20px;
}

footer {
  background-color: #f2f2f2;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  color: #666666;
}

.highlight {
  font-weight: bold;
  color: #ff0000; /* couleur rouge */
}

/* Styles spécifiques pour le titre */
header {
  text-align: center;
}

h1 {
  font-size: 32px;
  font-weight: bold;
  color: #ff0000; /* couleur rouge */
  font-family: "Arial", sans-serif;
}

/* Styles pour rendre le site plus attrayant */

body {
  background-color: #f9f9f9;
  line-height: 1.6;
}

nav {
  background-color: #ffffff;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

nav a {
  padding: 10px 15px;
  border-radius: 4px;
}

main {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

footer {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

a {
  color: #ff0000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Styles pour la mise en page responsive */

@media only screen and (max-width: 600px) {
  /* Styles pour les écrans de 600 pixels ou moins */
  /* Par exemple, ajuster la taille du texte et modifier la mise en page */
  body {
    font-size: 14px;
  }

  header {
    padding: 5px;
  }

  nav a {
    margin-right: 5px;
    font-size: 12px;
  }

  main {
    padding: 10px;
  }

  footer {
    padding: 5px;
    font-size: 12px;
  }
}

/* Ajoutez d'autres médias queries et styles spécifiques aux points de rupture souhaités */
