@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400&display=swap');

:root {
    /* Couleurs principales */
    --color-primary: #F2F2F2;     
    --color-secondary: #f07276;  
    
    /* Couleurs de texte et bordures */
    --color-text-dark: #1e293b;     
    --color-text-muted: #4a5568;   
    --color-border: #cbd5e1;     
    
    /* Couleurs d'états (Hover, etc.) */
    --color-bg-hover: #f8fafc;
    --color-border-hover: #94a3b8;
}


html, body {
  height: 100%;              /* occupe toute la hauteur de l'écran */
  margin: 0;
  display: flex;
  flex-direction: column;    /* empile header / main / footer */
  font-family: 'Roboto', sans-serif;
  background-color: #f6f6f6;
  
}

main {
  flex: 1;
                  /* occupe tout l’espace restant */
  padding: 20px;
}

h1 {
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}


h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: #333;
}

@media (max-width: 600px) {
  main {
    padding: 10px; /* un peu moins de padding sur petit écran */
  }

  h1, h2 {
    font-size: 1.5rem; /* évite que les titres soient trop gros */
  }
}
