* {
    font-size: 12px;
}

body {
    background-color: var(--black-color);
    display: grid;
    justify-content: left;
    align-items: center;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    grid-template-rows: repeat(12, 1fr);
    grid-template-areas: "o" "o" "o" "o" "o" "o" "o" "o" "o" "o" "o" "i";
}

input, div {
    width: 100vw;
}

input {
    grid-area: i;
    background-color: var(--black-color);
    color: var(--text-color);
    border: none;
    padding: 1vw 2vh;
    border-top: var(--hover-blue-color) 1px solid;
    border-radius: 0 0 10px 10px;
}

div {
    grid-area: o;
    color: white;
    padding: 1vw 2vh;
    height: 100%;
}

textarea:focus, input:focus{
    outline: none;
}