body {
    margin: 0;
    overflow: hidden;
    background-color: #1b2630;
    color: #ccc;
    font-family: monospace;
    cursor: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

ul#nav-menu {
    list-style: none;
    text-align: right;
    font-weight: 700;
    color: #fff;
    text-transform: lowercase;

    >li {
        margin-bottom: 24px;
    }
}

a,
a:visited,
a:hover,
a:active {
    color: inherit;
    text-decoration: none;
}

.command-container {
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
}

.command {
    color: white;
}

.command.current::after {
    content: "";
    right: -15px;
    /* Remove display: inline-block if not required to be on the same line as text etc */
    display: inline-block;
    background-color: #ececec;
    vertical-align: top;
    width: 8px;
    /* Set height to the line height of .text */
    height: 16px;
    -webkit-animation: blink 1s step-end infinite;
    animation: blink 1s step-end infinite;
}

@-webkit-keyframes blink {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

@keyframes blink {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

#loading-screen {
    transition: opacity 5s ease-in;
}

#stars-screen {
    display: none;
    opacity: 0;
    transition: opacity 7s ease-in, transform 5s ease-out;
    bottom: -100%;
    position: fixed;
    width: 100%;
    height: 100%;
}