/* Définition des polices personnalisées */
@font-face {
  font-family: "Roberte";
  src: url("Roberte-Regular.otf") format("opentype");
}

/* Body */
body {
  background-color: #FFFFFF;
  color: #000000;
  font-family: 'Arial';
  font-size: 12px;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

/* Espacement des paragraphes */
p {
  line-height: 1; /* Plus lisible qu'0.7px */
}

/* Styles des titres */
h1 {
  background-color: #FFFFFF;
  color: #000000;
  font-family: "Roberte", 'Arial';
  font-size: 30px;
}

h2 {
  background-color: #FFFFFF;
  color: #000000;
  font-family: 'Comic Sans MS', 'Arial';
  font-size: 20px;
}

/* Classe pour les boîtes */
.block {
  display: block;
  width: 300px;
  height: 200px;
  margin: 10px auto;
  padding: 10px;
  text-align: center;
  background-color: #f0f0f0; /* Ajout d'une couleur de fond pour plus de visibilité */
}

.mainblock {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.block2 {
  margin: 0;
  padding: 0;
  white-space: normal;
}

.blockvide {
  display: block;
  width: 100%;
  height: 800px;
  padding: 100px;
  margin: 50px;
  background-color: #FFFFFF;
  text-align: center;
  font-family: "Roberte";
}

/* Grille avec 3 colonnes */
.grandblock {
  background-color: #FFFFFF;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 colonnes égales */
  gap: 20px; /* Espacement entre les colonnes */
  width: 100%;
  height: auto;
}

.petitblock {
  background-color: #FFFFFF;
  padding: 20px;
  text-align: left;
  border: 1px solid #ccc; /* Bordure pour mieux voir les blocs */
}

.titre {
  background-color: #FFFFFF;
  color: #000000;
  font-family: 'Roberte';
  font-size: 17px;
}

.cutepink {
  background-color: #feecf5;
  color: #dd0e75;
  border: 1px solid;
  border-color: #dd0e75;
  padding: 0.5em;
}

/* Liste en 3 colonnes */
ul {
  display: flex;
  list-style-type: none;
  flex-direction: row; /* Aligne les éléments en ligne */
  gap: 20px; /* Espacement entre les éléments */
}

.colonnes {
  column-count: 3; /* 3 colonnes pour les éléments */
}

/* Exemple d'un bloc centré avec du texte */
.lalala {
  display: inline-block;
  width: 100%;
  height: 50px;
  padding: 10px;
  margin: 50px;
  background-color: #FFFFFF;
  text-align: center;
  font-family: "Roberte";
  font-size: 17px;
}
