/*css for drawing page*/
*{
    box-sizing: border-box;
}

body{
    background-color: #4ec0e6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    min-height: 100vh;
    font-family: "DynaPuff", system-ui;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

#container{
    margin: auto;
    width: 805px;
}

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

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

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

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