html, body{

    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}

body{

}

.container{
    width: 100%;
    height: 100%;

    min-height: 5vh;
    min-width: 1vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: lightgrey;
}


.input{
    width: calc(100% - 30px);
    height: calc(100% - 30px);


    display: flex;
    flex-direction: column;
    align-items: center;
}


textarea{
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    resize: none;
    margin: 0;
    padding: 20px;
    font-family: monospace;
    font-size: 1rem;
}