body {
    font-family: monospace;
    color: white;
    background-image: url('./assets/background.gif');
    background-repeat: no-repeat;
    background-size: 100vw 100vh;
}

h1 {
    font-size: min(2.75vw, 36px);
    text-align: center;
}

#game-container {
    width: 60%;
    margin: 0 auto;
    text-align: center;
}

#command-input {
    position: absolute;
    bottom: 0%;
    left: 25%;
    width: 50%;
    height: 7%;
    font-size: min(2.5vw, 24px);
    background-color: #3a5d6e;
    font-family: monospace;
    color: white;
    border: 0;
}

::placeholder {
    color: #00ddff;
    font-family: monospace;
}

#command-log {
    width: 50%;
    height: 50%;
    overflow-y: scroll;
    background-color: #3a5d6e;
    position: absolute; 
    top: auto;
    left: 25%;
    bottom: 8%;
    color: white;
    font-size: min(2.5vw, 24px);
    border: 0;
}

::-webkit-scrollbar {
    display: none;
}

a {
    position: absolute;
    bottom: 1%;
    top: auto;
    right: 10%;
    font-size: min(2.5vw, 24px);
    text-decoration: none;
}

a:link {
    color: #22ff00;
}

a:visited {
    color: #00ddff;
}

a:hover {
    color: #ffaa00;
}

a:active {
    color: #fbff00;
}