body{
    position: relative;
}

.anime-cover.remove-anime{
    animation: remover 1s forwards;
}




.anime-cover{
    background-color: rgba(0, 0, 0, 0.733);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 70;
    display: flex;
    justify-content: center;
    visibility: visible;

}


.anime {
    /* background-color: white; */
    width: 500px;
    height: 200px;
    /* border: 1px solid red; */
    margin-top: 55%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.anime div{
    width: 50px;
    height: 50px;
    background-color: #E7816B;
    border-radius: 50%;
    margin-right: 10px;

}
.anime div:nth-child(1){
    animation: scaleME 1.3s infinite linear;

}

.anime div:nth-child(2){
    animation: scaleME 1.2s infinite linear;

}

.anime div:nth-child(3){
    animation: scaleME 1.1s infinite linear;

}

@keyframes remover {
    100%{
        opacity: 0;
        visibility: hidden;
    }
}
@keyframes scaleME {
    0%{
        transform: scale(1);
    }

    50%{
        transform: scale(1.7);
    }

    100%{
        transform: scale(1);
    }
}




@media screen and (min-width:600px) {
    .anime{
    margin-top: 35%;
        
    }
}

@media screen and (min-width:900px) {
    .anime{
    margin-top: 25%;
        
    }
}

@media screen and (min-width:1000px) {
    .anime{
       margin-top: 15%;      
    }
}