#landing-page-animated-bg {
    position: relative;
    background-color: #030d18;
    background: 
        linear-gradient(to bottom, #030d187e 25%, #01447d 60%),
        url('/MainSite/images/bg-flag-about-transparent.webp');
        background-color: #030d18;
    background-size: auto, 100% auto;
    background-position: top;
    background-repeat: no-repeat, no-repeat;
}

#landing-page-animated-bg .starfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    /* Allows clicks to pass through to content below */
}

#landing-page-animated-bg .star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes twinkle {

    0%,
    100% {
        opacity: var(--opacity);
    }

    50% {
        opacity: 0.3;
    }
}

/* Make sure your content stays on top of the stars */
/* #landing-page-animated-bg>*:not(.starfield) {
    position: relative;
    z-index: 1;
} */
