@font-face {
  font-family: "Lexend Deca";
  src: url("/assets/font/LexendDeca-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "DancingScript";
  src: url("/assets/font/DancingScript-Medium.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


body {
  font-family: "Lexend Deca", sans-serif;
  margin: 2rem auto;
  max-width: 650px;
  line-height: 1.6;
  padding: 0 1rem;
}

h1, h2 {
  font-family: "DancingScript", cursive;
  margin-bottom: 0.5rem;
}

header {
  text-align: center;
  margin-bottom: 2rem;
}

ul {
  padding-left: 1.2rem;
}

a {
  color: inherit;
  text-decoration: underline;
}

.logo {
  display: block;
  width: 140px;        /* taille par défaut desktop */
  max-width: 60%;      /* limite relative pour les petits écrans */
  height: auto;        /* garde les proportions */
  margin: 0 auto 1rem; /* centré */
  border-radius: 50%;  /* optionnel, si tu veux un rendu bien rond */
}

@media (max-width: 480px) {
  .logo {
    width: 120px;
    max-width: 70%;
  }
}
