#bootScreen {
    position: fixed;
    inset: 0;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    z-index: 9999;
}

#bootText {
    white-space: pre-line;
    font-size: 13px;
    text-shadow: 0 0 10px var(--green);
}

/* fade out boot */
.boot-fade {
    animation: fade 1s forwards;
}

@keyframes fade {
    to {
        opacity: 0;
        visibility: hidden;
    }
}
