
.loader-container{
    position:fixed;
    width:100vw;
    height:100vh;
    background:black;
    opacity:0.7;
    display:flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    top:0;
    z-index:999;
}


.loader-container img {
    width: 150px;
    animation: bounce 0.75s infinite;
    z-index:1000;
}

@keyframes bounce {
    0%, 100% {
        transform: scale(0.75);
    }

    50% {
        transform: scale(1);
    }

}
