html, body {
    overflow-x: hidden;
}

body {
    position: relative;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("../img/ben-franklin-bridge.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100vw auto;
    opacity: 0.35;
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 700px) {
    body::before {
        background-size: 160vw auto;
        opacity: 0.3;
    }
}
