.auth-bg {
    background-color: #151817;
}

@media (orientation: portrait) {
    .auth-bg {
        background-color: #151817;
    }
}

.default-bg {
    --default-bg-color: 66, 87, 82;
    background-color: rgb(var(--default-bg-color));
    background-image: url("/static/background.jpg");
    background-repeat: repeat;         /* tiles the image */
    background-size: 5vw 5vw;      /* sets size of each tile */
    background-attachment: fixed;
}

@media (orientation: portrait) {
    .default-bg {
        background-color: rgb(var(--default-bg-color));
        background-image: url("/static/background.jpg");
        background-repeat: repeat;         /* tiles the image */
        background-size: 5vh 5vh;      /* sets size of each tile */
        background-attachment: fixed;
    }
}