/* Corps de page en noir */
body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
}


.centered {
  font-size: 20vw; 
  text-transform: uppercase;
  white-space: nowrap;
}


@media (max-width: 600px) {
  .centered {
    font-size: 30vw;
  }
}