* {
  font-family: "VT323", "Perfect DOS VGA 437", monospace;
}

body {
  font-family: "VT323", "Perfect DOS VGA 437", monospace;
  font-size: 10px; /* Petite taille */
  line-height: 1; /* Espacement serré entre les lignes */
  color: #ffffff; /* Vert terminal */
  background-color: #000000; /* Fond noir */
}

a {
  color: #ffffff; /* Cyan pour les liens */
  text-decoration: underline; /* Soulignés pour bien ressortir */
}

nav {
  margin-top: 1em;
  margin-bottom: 2em;
}

nav a {
  text-decoration: none;
  color: #a859d6;
  margin-right: 1em;
}

nav a:hover {
  text-decoration: underline;
}

section {
  margin-bottom: 3em;
}

ul {
  list-style-type: none;
  padding-left: 0;
  color: #ffffff; /* Cyan pour les liens */
}



ul li::before {
  content: "• ";
}



