@font-face {
    font-family: "Classic Console Neue";
    src: url("fonts/clacon2.woff2") format("woff2");
}

* {
    font-family: "Classic Console Neue";
    margin: 0;
}

body {
    margin: 0;
    overflow: hidden;
    text-align: center;
    background-color: hsl(0, 0%, 3%);
    color: white;
}

#shell {
    font-size: 1.3rem;
    border: 0;
    outline: 0;
    resize: none;
    height: 100vh;
    color: white;
    background-color: black;
    overflow-y: auto;
    cursor: none;
    word-break: break-all;
}

#shell::selection {
    color: black;
    background-color: white;
}

#graph {
    /* display: none; */
    width: 670px;
    height: 100vh;
    text-align: center;
    display: none;
    cursor: none;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    /*transform: scale(2);*/
}

#screen-message {
    display: none;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

@media screen and (max-width: 690px) {
    #shell, #graph {
        display: none !important;
    }

    #screen-message {
        display: flex;
    }
}

/* width */
::-webkit-scrollbar {
    display: none;
}
  
/* Track */
::-webkit-scrollbar-track {
    display: none;
}

/* Handle */
::-webkit-scrollbar-thumb {
    display: none;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    display: none;
}