/* Import de la police locale */
@font-face {
  font-family: "PatrickHand";
  src: url("../fonts/PatrickHand-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

/* Style global de la page */
body {
  margin: 0;
  font-family: "PatrickHand", Arial, sans-serif; /* police appliquée */
  background-color: black;
  color: white;
}

/* Conteneur centré */
.container {
  display: flex;
  flex-direction: column;
  justify-content: center; /* centre vertical */
  align-items: center; /* centre horizontal */
  height: 100vh;
  text-align: center;
  padding: 20px;
}

/* Logo rond */
.logo {
  width: 150px;
  height: 150px;
  border-radius: 50%; /* rend l'image circulaire */
  object-fit: cover;
  margin-bottom: 20px;
}

/* Texte description */
.description {
  max-width: 500px;
  font-size: 18px;
}