body {
  background-color: black;
  font-family: sans-serif;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
  color: yellow;
}

#pacman {
  height: 470px;
  width: 382px;
  border-radius: 5px;
  margin: 20px auto;
}

#shim {
  font-family: 'Permanent Marker', cursive;
  position: absolute;
  visibility: hidden;
}

h1 {
  font-family: 'Permanent Marker', cursive;
  text-align: center;
}

h2 {
  font-family: 'Permanent Marker', cursive;
  text-align: center;
}

.link-container {
  display: flex;
  justify-content: center;
  gap: 20px; /* Espace entre les liens */
  margin-top: 20px;
}

.link-container a {
  font-family: 'Permanent Marker', cursive;
  font-size : 50px;
  text-decoration: none;
  color: yellow;
  padding: 10px 20px;
  /*background-color: #yellow;*/
  /*border: 1px solid #ccc;*/
  /*border-radius: 5px;*/
  /*transition: background-color 0.3s, color 0.3s;*/
}

.link-container a:hover {
  /*background-color: #ddd;*/
  color: #fff;
}
