  
        .pageContainer{

            position:absolute;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0px;
            flex-direction: column;
            font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
            background-color: var(--background);
        }

        .textApparitionContainer{
            
             width: auto;
             display: flex;
            justify-content: center;
            align-items: center;
            padding: 0px;
            flex-direction: column;
        }
       
        .textContainer {
            position: relative;
            width: auto;
            height: auto;
            overflow: hidden;
            color : var(--ecriture);
            top: 50px;
         }
        
        .text{

            position: relative;
            width: 100%;
            height: 100%;
            transform: translateY(100%);
            font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
            font-weight: bolder;
            font-size: 60px;
            text-align: center;
            animation: spanFadeIn 500ms ease forwards;
            
        }

        .second{
            animation-delay: 200ms;
        }
        .third{
            animation-delay:400ms ;
        }

        .fourth{
            animation-delay:800ms ;
            font-size: 200px;
        }
        svg{
            z-index: 1;
          } 

        @keyframes spanFadeIn {
        0% { transform: translateY(100%);
                overflow: hidden;    
        }
        100%   { transform:translateY(0); }
        }
        
         
   @media(max-width: 900px) {
        .text{
                font-size:30px;   

        }
        }
        