html {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.3rem;
}

pre {
    font-family: 'Courier New', Courier, monospace;
}

.title {
    font-size: 0.5rem;
    text-align: center;
}

#terminal {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
    padding: 15pt;
    width: 60%;
    max-width: 60%;
    height: 85vh;
    max-height: 70%;
    overflow-y: scroll;
    overflow-x: hidden;
}

#oldCommandDiv {
    padding-top: 15pt;
    padding-bottom: 15pt;
}

#oldCommandDiv p, input, pre, span, a{
    overflow-wrap: break-word;
    word-wrap: break-word;
    overflow-x: auto;
    white-space: pre-wrap;
}

#oldCommandDiv a {
    max-width: fit-content;
}

input {
    border: none;
    width: 95%;
    padding: none;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
}

input:focus {
  outline: none;
}