html, body, main {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: sans-serif;
    color: white;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(46, 46, 46);
}

p {
    margin: 0;
}

#matrix {
    display: grid;
    grid-template: 
    '. .'
    '. .';
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.square {
    width: 17vw;
    height: 17vw;
}

.square textarea {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    box-sizing: border-box;
    outline: none;
    padding: .5rem;
    font-family: sans-serif;
    resize: none;
}

#do {
    background-color: lightgreen;   
}

#schedule {
    background-color: lightblue;
}

#delegate {
    background-color: lightgoldenrodyellow;
}

#eliminate {
    background-color: lightcoral;
}