/* --- CSS for Drawing App --- */

*{
    box-sizing: border-box;
}

body{
    background-color: #880808;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    min-height: 100vh;

                /* Font */
    font-family: "DynaPuff", system-ui;
}

h1{
            /* Font Settings */
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
    "wdth" 100;
}

canvas{
    border: 2px solid white;
    background-color: white;
}

.toolbox{
    background-color: white;
    border: 1px solid white;
    display: flex;
    padding: .5rem;
    width: 804px;
}

.toolbox > * {
    border-color: white;
    display: inline-flex;
    justify-content: center;
    font-size: 2rem;
    padding: .25rem;
    margin: .25rem;
    height: 50px;
    width: 50px;
}

.toolbox > *:last-child {
    margin-left: auto;
}