@keyframes background-size {
    from {
        background-size: 75%;
    }
    to {
        background-size: 100%;
    }
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0D0D0D;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 25px;
    z-index: 999;

    display: flex;
    align-items: center;
    justify-content: center;


    background-image: url(/img/background.png);
    background-position: center;
    background-size: 75%;
    width: 100%;
    background-repeat: no-repeat;
    overflow: hidden;

    animation: background-size 2s cubic-bezier(.46, .43, .1, .99) infinite alternate;

}

@keyframes zoom {
    from {
        opacity: 0;
        transform: scale(1.2);
    }
    to {
        opacity: 1;
        transform: scale(0.8);
    }
}

.loader img {
    width: 60%;
    animation: zoom 2s cubic-bezier(.46, .43, .1, .99) infinite alternate;
}

