html {
    width: 100vw;
    height: 100vh;
    background-color:  #282828;
    color:  #fbf1c7;
}

body {
    font-family: "Ubuntu", sans-serif;
    margin: 0px;
    padding: 0px;
}

input {
    all: unset;
    padding: 1rem 0rem;
    padding-left: 0.5rem;
    border-bottom: 3px solid #fbf1c7;
    transition: 0.1s all;
}

input:hover {
    border-bottom: 3px solid #b8bb26;
}

input:focus {
    border-bottom: 3px solid #fabd2f;
}

body {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#terminal {
    width: 60%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
}

#output-wrap {
    width: 100%;
    height: 640px;
    padding: 1rem;
    box-sizing: border-box;
}