body
{
    margin: 0;
    width: 100vw;
    height: 100vh;
    display: grid;
    background-color: #333;
    color: #ccc;
    font-family: monospace;
    place-items: center center;
}
* 
{
    -webkit-tap-highlight-color: transparent;
}

.title
{
    font-size: 2rem;
}

.selector
{
    margin: auto;
    display: grid;
    grid-template: auto / 1fr 1fr 1fr 1fr 1fr;
    width: 80vw;
    place-items: center center;
    font-size: 2rem;
}

.selector *
{
    padding: 1rem;
    border-radius: 1rem;
    cursor: pointer;
}

.submit
{
    font-family: monospace;
    font-size: 2rem;
    padding: 1rem 2rem;
    border-radius: 1rem;
    cursor: pointer;
    background-color: #222;
    color: #ccc;
    outline: none;
    border: none;
}

.notes
{
    display: block;
    width: 90%;
    height: 90%;
    background: none;
    color: #ccc;
    font-size: 2rem;
    border-radius: 1rem;;
}