html {
    height: unset !important;
    min-height: 100% !important;
}

body {
    background: linear-gradient(to bottom, var(--bg-color-dark), var(--bg-color-light)) !important;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.piaristenball.at/wp-content/uploads/2024/09/bg-stars.webp');
    background-repeat: repeat;
    opacity: 0.2;
    background-size: 650px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0.8) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0.89) 100%);
    z-index: 1;
    pointer-events: none;
}

