<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
@font-face {
    font-family : Homoneta;
    src: url(Homoneta-Italic.otf);
}

.eb-garamond {
  font-family: "EB Garamond", serif;
  font-weight: 500;
  font-style: normal;
}


body {
  margin: 0;
  padding: 2rem;
  font-family: Times;
  font-size: 14px;  /* LÃ©gÃ¨rement plus grand pour la lisibilitÃ© */
  background: linear-gradient(to right, rgba(180, 230, 255, 0.6), rgba(230, 240, 255, 0.6));
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  margin-bottom: 1rem;
  position: relative;
  z-index: 4;
  font-family: Homoneta;
  text-align: center;
}

h2 {
  margin-bottom: 1rem;
  position: relative;
  z-index: 5;
  font-family: Homoneta;
}


.presentation-text {
  background: transparent;  /* Fond semi-transparent, change selon ton esthÃ©tique */
  border-radius: 10px;  /* Coins arrondis pour un effet plus doux */
  padding: 2rem;  /* Marge interne pour que le texte respire */
  max-width: 80%;  /* Limiter la largeur du texte pour Ã©viter qu'il ne soit trop Ã©tendu */
  margin: 2rem auto;  /* Centrer la boÃ®te dans la page, avec un espacement autour */
  text-align: center;  /* Centrer le texte pour plus d'Ã©lÃ©gance */
  font-size: 14px;  /* LÃ©gÃ¨rement plus grand pour la lisibilitÃ© */
  line-height: 1.6;  /* Augmenter l'espacement des lignes pour que le texte respire mieux */
  font-family: EB Garamond;
  color: #333;  /* Couleur de texte sombre pour une bonne lisibilitÃ© */
  z-index: 10; /* Pour que le texte reste bien visible au-dessus des autres Ã©lÃ©ments */
}

a {
  outline: none;
  color: black;
}

a:hover {
 filter: brightness(1.5); 
 border-bottom: 1px solid;
}

form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

#souvenir {
  padding: 0.5rem;
  border: 1px solid #ccc;
  width: 250px;
}

button {
  padding: 0.5rem 1rem;
  background-color: #000;
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
}


#network {
  pointer-events: none; /* NE PAS bloquer les clics sur les Ã©lÃ©ments en dessous */
}


  #garden {
  position: relative; /* Important pour que les graines soient positionnÃ©es par rapport au garden */
  width: 100%;
  height: 45vh; /* Ton espace de plantation */
  background: transparent;
  overflow: hidden;
}


.seed {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  font-size: 0.9rem;
  color: black;
  filter: blur(0.1px) brightness(1.2);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.5);
  z-index: 1;
}

.seed:hover {
  transform: scale(1.1);
  filter: brightness(1.5);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}






</pre></body></html>