*{
    margin: 0;
    padding: 0;
}

body{
    width: 100%;
}

.paintEditor{
    margin: 15px;
}

.paintEditor toolbar{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px 20px;
    height: 10%;
}

.paintEditor toolbar fieldset{
    padding: 5px;
}

.paintEditor paintarea{
    display: block;
    border: 1px solid black;
    margin: 15px 0;
    height: 80%;
}

#pointArea{
    cursor: crosshair;
    width: 100%;
    height: 100%;
}

.paintEditor statusbar{
    display: flex;
    justify-content: flex-end;
    border: 1px solid black;
}
.paintEditor statusbar div{
    padding: 5px;
}