@media (min-width: 768px) {
    html {
    }
}

html {
    height: 100%;
    min-height: 100%;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
}

body {
    padding: 85px 0px 35px 0px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

    body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('/images/background.jpg');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        opacity: 0.5;
        z-index: -1;
        pointer-events: none;
    }
