body{
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    padding: 0;
    margin: 0;
}
.gradient{
    width: 100vw;
    height: 100vh;
    padding: 0;
    margin: 0;
    background: radial-gradient(circle, rgba(255,0,0,1) -20%, rgba(255,0,0,0) 20%);
    position: fixed;
    background-size: contain;
    background-position: center;
    top: 0px;
    z-index: 5;
    animation: size 4s ease-in-out infinite;
}
.cont{
    width: 100%;
    height: 100%;
    background-image: url(../../../assets/images/etapes/hallah/07.png);
    background-size: contain;
    background-position: center;
    background-position: 50% 30%;
    background-repeat: no-repeat;
    animation: rotation 10s ease-in-out infinite;
}
    @keyframes rotation {
        0% {
        transform: rotate(10deg);
        }
        50% {
        transform: rotate(-10deg);
        }
        100% {
            transform: rotate(10deg);
            }
    }
    @keyframes size {
        0% {
        transform: scale(2);
        }
        50% {
        transform: scale(6);
        }
        100% {
            transform: scale(2);
            }
    }