/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
   

body {
  font-family: "Gwendolyn", cursive;
  text-align: center;
  background-color: #B6DCFC;
}

/* Titre principal */
h1 {
  font-family: "Gwendolyn", cursive;
  font-weight: 400;
  font-size: 70px;
  font-style: normal;
  color: white;
}

/* Sous-titre "room" */
.subtitle {
  font-family: "Gwendolyn", cursive;
  color: white;
  font-size: 40px;
}

/* Carte blanche */
.paper {
  background: white;
  border-radius: 10px;
  padding: 20px;
  width: 60%;
  margin: auto;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

/* Espace pour les centres d'intérêt */
.grand-espace {
  margin-bottom: 100px;
  display: flex;
  flex-direction: column; /* éléments en colonne */
  align-items: flex-start; /* alignement à gauche */
  gap: 10px;
}

/* Liens d'intérêts (si tu veux plus tard du texte cliquable) */
.interests a {
  font-size: 30px;
  margin: 10px;
  text-decoration: none;
}
