*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body{
    height: 100%;
}
body{
    background-color: rgb(140, 117, 117);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.navbar, .canvas{
    background-color: rgb(240, 171, 171);
    width: 800px;
    border-radius: 3px;
}
.navbar{
    padding: 1em;
    margin-bottom: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn, input{
    height: 35px;
    padding: 0 1em;
}
.color{
    padding: 0 .25em;
    width: 100px;
    margin: 0 1em;
}

.canvas{
    --size: 4;
    height: 800px;
    display: grid;
    grid-template-columns: repeat(var(--size), 1fr);
    grid-template-rows: repeat(var(--size), 1fr);
    gap: 3px;
    padding: 3px;
    cursor: crosshair;
    user-select: none;
}
.pixel{
    background-color: rgb(61, 61, 61);
    border-radius: 2px;
}