
/* djenabou  */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* body{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
} */
.chargement{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
   position: absolute;
    margin-top: -10%;
    z-index: 1000;
}
.ring{
    position: absolute; 
   border-radius: 50%;
}
.ring:nth-child(1){
   width: 130px;
   height: 130px;
   border-top: 5px solid rgb(248, 210, 6);
   animation: rotate-forward 2.8s linear infinite;
}
.ring:nth-child(2){
   width: 140px;
   height: 140px;
   border-top: 5px solid rgb(255, 0, 0);
   transform: rotate(85deg);
   animation: rotate-backward 2.5s linear infinite;
}
.ring:nth-child(3){
   width: 150px;
   height: 150px;
   border-top: 5px solid rgb(131, 218, 45);
   transform: rotate(225deg);
   animation: rotate-forward 2.2s linear infinite;
}
.loading-text{
 position: absolute;
 font-family: cursive;
 font-size: 14px;
 color: #4835cb;
 z-index: 10;
}
@keyframes rotate-forward {
   0%{
       transform: rotate(0deg);
   }
   100%{
       transform: rotate(360deg);
   }
}
@keyframes rotate-backward {
   0%{
       transform: rotate(360deg);
   }
   100%{
       transform: rotate(0deg);
   }
}

.fondu-out{
    opacity: 0;
    transition: opacity 0.7s ease-out;
}



/* djenabou  */
