/* Import des polices */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500&family=Playfair+Display:wght@400;500&display=swap');

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #000000;
  color: #ffffff;
  text-align: center;
}

/* Header = nom du site */
header {
  font-family: 'Cinzel', serif;
  font-size: 24px;          /* discret */
  margin-top: 100px;         /* petite marge haut */
  opacity: 0.7;
  letter-spacing: 1px;
}

/* Corps du texte = centre */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;  /* centre vertical */
  align-items: center;
  font-family: 'Playfair Display', serif;
}

main p {
  font-size: 20px;          /* corps plus grand */
  margin: 0.7em 0;
}

/* Adresse = sous le corps, mais pas en bas */
main p:last-child {
  margin-top: 2em;          /* descend mais reste dans le flow */
  font-size: 18px;          /* plus discret que le texte */
  opacity: 0.6;
  letter-spacing: 1px;
}
