/**
Theme Name: Destiny
Template:   twentytwentyfour
Theme URI: https://wordpress.org/themes/twentytwentyfour/
Template: twentytwentyfour
Author: the WordPress team
Author URI: https://wordpress.org
Description: Twenty Twenty-Four is designed to be flexible, versatile and applicable to any website. Its collection of templates and patterns tailor to different needs, such as presenting a business, blogging and writing or showcasing work. A multitude of possibilities open up with just a few adjustments to color and typography. Twenty Twenty-Four comes with style variations and full page designs to help speed up the site building process, is fully compatible with the site editor, and takes advantage of new design tools introduced in WordPress 6.4.
Tags: one-column,custom-colors,custom-menu,custom-logo,editor-style,featured-images,full-site-editing,block-patterns,rtl-language-support,sticky-post,threaded-comments,translation-ready,wide-blocks,block-styles,style-variations,accessibility-ready,blog,portfolio,news
Version: 1.1.1712642467
 */

 .principal {

    position: relative;
    left: -1000px; /* Position de départ en dehors de l'écran */
    animation: slideIn 1.5s ease forwards;
  }
  
  @keyframes slideIn {
    to {
      left: 0; /* Position finale à laquelle l'élément doit glisser */
    }
  }

.par {

    position: relative;
    left: 2100px; /* Position de départ en dehors de l'écran */
    animation: slideIn 2s ease forwards;
  }
  
  @keyframes slideIn {
    to {
      left: 0; /* Position finale à laquelle l'élément doit glisser */
    }
  }

  .bouton {

    position: relative;
    left: -1000px; /* Position de départ en dehors de l'écran */
    animation: slideIn 2.5s ease forwards;
  }
  
  @keyframes slideIn {
    to {
      left: 0; /* Position finale à laquelle l'élément doit glisser */
    }
  }


.wp-block-button {
    transition: transform 0.3s ease;
  }
  
  .wp-block-button:hover {
    transform: scale(1.1); /* Increases the scale of the element by 10% */
  }


  .propos {
    opacity: 0; /* Définit l'opacité à 0 pour masquer le contenu initialement */
    animation: fadeIn 4s ease forwards; /* Utilise l'animation fadeIn pendant 1 seconde */
  }
  
  @keyframes fadeIn {
    to {
      opacity: 1; /* Définit l'opacité à 1 pour afficher complètement le contenu */
    }
  }
