body {
    --line: #e2e2e2;
    background-color: var(--bg-color);
    background: repeating-linear-gradient(
        -45deg,
        var(--line),
        var(--line) 2px,
        var(--bg-color) 2px,
        var(--bg-color) 10px
    );
}
.bgBox {
    display: flex;
    flex-direction: row-reverse;
    position: absolute;
    height: 100dvh;
    width: 100%;
    overflow: hidden;
    z-index: -1;
}
.bgBox .imgBox {
    width: 100%;
    overflow: hidden;
    background-color: var(--primary);
    background: repeating-linear-gradient(
        -45deg,
        var(--primaryDark),
        var(--primaryDark) 2px,
        var(--primary) 2px,
        var(--primary) 10px
    );
}
@media screen and (min-width: 576px) {
    .bgBox .imgBox {
        width: 50%;
    }
}
.logo-placeholder-wrapper {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    mix-blend-mode: multiply;
}
.logo-placeholder {
    min-width: 768px;
    width: 80%;
    opacity: .1;
    filter: blur(2px);
}
.bgImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: luminosity;
    opacity: 0.1;
}
