body {
    margin: 0;
    overflow: hidden;
    cursor: url(src/cursor.png), auto;
}

@font-face {
    font-family: main;
    src: url(src/bitern-mono.otf);
}

#background {
    background-color: black;
    position: relative;
    z-index: -1;
}

.center {
    display: flex;
    justify-content: center;
}

#main {
    border: 4px ridge white;
    z-index: 1;
    position: absolute;
    background-color: #474747;
    color: white;
    font-family: main;
    width: 50%;
    text-align: center;
    margin-top: 2rem;
}

.title {
    font-size: xx-large;
}

#terminal {
    width: 100%;
    background-color: #1A1A1A;
    min-height: 50vh;
    border-top: 4px ridge white;
    text-align: start;
}

input {
    outline: none;
    background: none;
    font-family: main;
    color: white;
    border: none;
    font-size: large;
    width: 80%;
}

#hiddenInput { display: none; }