html,
body {
    overflow: hidden;
    color: #fefeff;
    text-shadow: rgb(0, 0, 0, 1) 0px 0px 15px;
    scroll-behavior: smooth;
    cursor: none;
    margin: 0;
    padding-top: env(safe-area-inset-top);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    padding-bottom: env(safe-area-inset-bottom);
}

body {
    margin: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
}

canvas {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: all;
    z-index: -1;
    touch-action: manipulation;
    /* allows gestures like scroll, tap */
    user-select: none;
    /* prevents accidental text selection */
    -webkit-user-drag: none;
    /* prevents image drag ghosting on iOS */
}

#starrysky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Prevent stars from overflowing */
    z-index: -1;
    /* Place it behind other content */
    background: rgba(0, 0, 0, 0);
    /* Base background color */
}

.star {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    /* Make the stars circular */
    opacity: 0;
    /* Start with invisible stars */
    animation: twinkle 2s infinite ease-in-out;
    /* Twinkling animation */
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}