.site-wrapper {
    position: relative;
}

.site-wrapper__background {
    position: fixed;
    display: block;
    inset: 0;
    width: 100%;
    height: 100dvh;
    z-index: -100;
    opacity: 0.3;
}

.site-wrapper__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .site-wrapper {
        display: grid;
        grid-template-columns: 1fr 2fr;
    }
}