body {
    background-image: url("img/bg_rules.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}


html, body {
    height: 100%;
}
body {
    position: relative;
    background: none;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("img/bg_rules.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    pointer-events: none;
}

.headline h1 {
    color: var(--text);
    text-align: center;
    font-weight: bold;
}

.headline h2 {
    color: var(--text);
    text-align: center;
}


@media (min-width: calc(1920px + 1px)) {
    body {
        background-size: cover;
    }
}