@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body {
    background-color: black;
    color: limegreen;
    font-family: "Space Mono", monospace;
    font-weight: 400;
    font-style: normal;
    font-size: 0.7vw;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

a {
    color: limegreen;
    font-family: "Space Mono", monospace;
    font-weight: 400;
    font-style: normal;
    font-size: 0.7vw;
}

#terminal {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100vh;
    padding: 0.5vw;
    overflow-y: auto;
}

pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    display: flex;
    flex-grow: 1;
    margin: 0;
    flex-direction: column;
    justify-content: flex-end;
}

#input-container {
    display: flex;
    align-items: center;
}

#input-line {
    display: flex;
    width: 100%;
}

#prompt {
    margin-right: 5px;
}

#input {
    background: transparent;
    border: none;
    outline: none;
    flex-grow: 1;
    color: limegreen;
    font-family: "Space Mono", monospace;
    font-weight: 400;
    font-style: normal;
    font-size: 0.7vw;
}
