html {
    height: 100%;
}

body {
    margin:  0;
    padding: 0;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #222;
}

#top {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding-left:  45px;
    padding-right: 45px;
}

#bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

h2 {
    color: #ccc;
    margin: 0;
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 400;
}

.input {
    flex: 1;
    display: flex;
    flex-direction: column;
}

textarea {
    flex: 1;
    border: none;
    resize: none;
    min-height: 200px;
    font-size: 20px;
    font-family: monospace;
    background-color: #111;
    color: #ccc;
    padding: 20px;
}

textarea:focus-visible {
    outline: 3px solid #666;
}

