body{
    box-sizing: border-box;
    min-height: 100vh;
    margin: 0;
    background-color: beige;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.sketch{
    display: flex;
    align-items: center;
    justify-content: space-evenly;

}

.container{
    display: grid;
    width: 608px;
    height: 608px;
    border: 3px solid black;
    background-color: antiquewhite;
}

.header{
    text-align: center;
    font-size: 64px;
    min-width: 100vw;
    background-color: rgb(211, 211, 172);
    padding: 20px;
    border-bottom: 5px solid #504141;
    margin-bottom: 20px;
    font-weight: bold;
}

.toolbar{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    border: 3px solid #504141;
    padding: 20px;
}

.toolbar > *{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 28px;
    font-weight: bold;
}

#colorPicker{
    width: 150px;
    height: 50px;
}

#clearBtn{
    display: flex;
    width: 250px;
    height: 50px;
    border-radius: 10px;
    padding: 20px;
    font-weight: bold;
    font-size: 32px;
    align-items: center;
    justify-content: center;
    border: 5px solid #504141;
}

#clearBtn:hover{
    background-color: antiquewhite;
}

.footer{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-top: 2px solid  #504141;
    padding: 0;
    font-size: 16px;
    font-weight: bold;
    margin-top: auto;
}
