
body
{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background: #fff;
    box-sizing: border-box;
    
}
.box
{
    width: auto;
    height: 100vh;
    background: url(technologie.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
h1
{
    
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    padding: 0;
    text-align: center;
    font-size: 10em;
    color:#55c6f6; 
    text-transform: uppercase;
    text-shadow: 0 5px 10px rgba(0,0,0,1);
    mix-blend-mode: overlay; 
    box-shadow: 0 5px 10px rgba(0,0,0,1);
    background: rgba(0,0,0,.7);
}

.enCons
{
    width: 500px;
    height: 200px;
    text-align: center;
    position: absolute;
    top: 25%;
    
}

h3
{
    margin: 50px auto;
    font-size: 50px;
    font-weight: bold;
    color: #AFE0E1;  
    text-shadow: 2px 2px 2px red;
    
}
.anime
{
    position:absolute;
    width: 100px;
    height: 100px;
    top:0%;
    left:0%;
    text-align: center;
    background-color:#f60f0f;
    border-radius: 20px;
    /*mix-blend-mode: overlay; */
    z-index: 13;
    animation: mouveData 10s infinite backwards;
    mix-blend-mode: lighten; 
}
h4{
    color: #f2fff6;
    text-shadow:2px 15px 40px #000;
    font-size: 11px;
    font-family: sans-serif;
   
}
.text
    {
    border: none;    
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    animation: mouvTex 1s infinite alternate ease-in-out;
}
    
@keyframes mouveData{
    0%{
        top:0%;
        left: 0%;
        background-color:#f60f0f;
        transform: rotate(720deg);
    }
    20%{
        top:20%;
        left:20%;
        background-color:#f2f40d;
    }
    40%{
        top:10%;
        left:40%;
        background-color:#0df46e;
    }
    60%{
        top: 60%;
        left:60%;
        background-color: #0d40f4;
        
    }
    80%{
        top:30%;
        left: 70%;
        background-color: #db0df4;
    }
    
    100%{
        top: 83%;
        left: 91%;
        background-color: aquamarine;
    }
} 
@keyframes mouvTex{
    0%{
        left:50%;
        top: 50%;
        transform: translate(-50%,-50%) rotate(360deg);
       
   
    }
}
    



