:root {
    --text: #000000;
}

body {
    background-image: url("../img/bg_index.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    font-family: "Roboto Light", Inter, system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial;
    height: 100%;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("../img/bg_index.jpg");
    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;
}
h1 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--text);
}


p {
    margin-bottom: 16px;
}


.highlight {
    font-weight: bold;
}




@media (min-width: calc(1920px + 1px)) {
    body {
        background-size: cover;
    }
}

