*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: bisque;
    font-family: monospace;
}

#canvas{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 90vh;
    text-align: center;
}

#userinput{
    font-size: 3em;
    border-bottom: 2px solid black;
    margin: 15px;
    height: 60px;
}

.keyData{
    margin: 1rem;
    font-size: large;
}

@media (max-width: 500px) {
    #canvas{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        font-size: 0.9em;
        height: 60vh;
        text-align: center;
    }

    #userinput{
        font-size: 3em;
        border-bottom: 2px solid black;
        margin: 0.5rem;
        height: 50px;
    }
}