/*-----DrawingApp CSS-----*/ 

h1, #decrease, #size, #increase, #clear{
    box-sizing: border-box;
    font-family: "Permanent Marker", cursive;
    font-weight: 400;
    font-style: normal;
}

body{
    background-color: rgb(104, 150, 192);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    min-height: 100vh;
}

canvas{   
    background-color: rgb(244, 248, 252);
    border: 6px solid rgb(50, 28, 133);
}

.toolbox{
    background-color: rgb(50, 28, 133);
    border: 6px solid rgb(50, 28, 133);
    display: flex;
    padding-top: 8px;
    width: 800px;
}

.toolbox > * {
    background-color: rgb(206, 220, 233);
    border-color: white;
    display: inline-flex;
    justify-content: center;
    font-size: 2rem;
    padding: 0.25rem;
    /*margin: 0.25rem;*/
    height: 50px;
    width: 50px;
}

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

#clear {
    -webkit-text-fill-color: red;
}
