.background{
    width: 100%;
    height: 100%;
    background-color: var(--color-theme-1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}
    .background_image{
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        background-color: #000000;
        left: 0;
        top: 0;
    }
        .background_image img{
            opacity: 0.95;
        }

@media (max-width: 768px) {

    .background{
        display: none;
    }

}