#stars-container {
    position: fixed;
    width: 100%;
    height: 100%;
}

.stars {
    /* position: absolute; */
    /* height: 100%; */
    /* width: 100%; */
    /* transform: translateX(0); */
    transition-duration: 0.25s;
    transition-timing-function: ease-out;
}

.neon {
    color: #fff;
    text-shadow:
        0 0 7px #fff,
        0 0 10px #fff,
        0 0 21px #fff,
        0 0 42px #f09,
        0 0 82px #f09,
        0 0 92px #f09;


    transition: all;
    transition-duration: 0.25s;
    transition-timing-function: ease-out;
}

@media not all and (min-resolution:.001dpcm) {
    @supports (-webkit-appearance:none) and (stroke-color:transparent) {
        .neon {
            text-shadow:
                0 0 10px #fff, 0 0 42px #f09;
        }
    }
}

.neon-off {
    color: #cbd5f1;
    text-shadow: none;
}

#instructions {
    font-size: 2.5em;
    text-align: center;
    display: none;
}

#permission {
    padding: 2em;
    border-radius: 10px;
    border-color: #fefefe;
    background-color: #fefefe;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    inset-block-start: 0px;
    inset-block-end: 0px;
}

button {
    min-width: 100px;
    padding: 1em;
    border-radius: 30px;
    border: none;
    background-color: #E2C044;
    color: #2e2e2e;
}

button.secondary {
    background-color: #fefefe;
    color: #2e2e2e;
    border: solid 2px #E2C044;
}