/**
 * Theme Name: Grand Sunrise
 * Template:   twentytwentyfour
 * ...other header fields
 */
 /* Définition des styles de base du titre */
body{
  background-color: darkgreen;
}
 title {
    opacity: 0; /* Le titre est initialement transparent */
    transform: translateY(-20px); /* Le titre est initialement positionné 20px au-dessus */
    transition: opacity 0.5s ease, transform 0.5s ease; /* Transition en douceur de l'opacité et de la position */
  }
  
  /* Définition de l'animation pour le titre */
  @keyframes fadeInUp {
    0% {
      opacity: 0; /* Le titre est transparent au début de l'animation */
      transform: translateY(20px); /* Le titre est positionné 20px en dessous */
    }
    100% {
      opacity: 1; /* Le titre est complètement opaque à la fin de l'animation */
      transform: translateY(0); /* Le titre est à sa position normale */
    }
  }
  
  /* Application de l'animation au titre */
  .title.animate {
    animation: fadeInUp 0.5s ease forwards; /* Utilisation de l'animation avec le nom "fadeInUp" */
  }