* {
    box-sizing: border-box;
}

.pixel {
    box-sizing: border-box;
    border:inherit;
    background-color: white;
    /* border:1px solid red;
    background-color: blue; */
}

.canvas {
    display: flex;
    flex-wrap: wrap;
    flex: 1 1 auto;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.407);
}

.grid {
    border:1px solid rgba(167, 167, 167, 0.366);
}

#colorPalete {
    display: flex;
    flex-wrap: wrap;
    height: 200px;
    align-items:stretch;
}

#colorPalete div {
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: grey;
}

.container {
    display: flex;
    align-items: stretch;
    height: 800px;
    width: 800px;
}

body {
    background-color: rgb(226, 226, 226);
    height: 100vh;
    display:flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

#ui {
    height: 800px;
    width: 100px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

button {
    border:0px;
    background-color: rgb(182, 182, 182);
    height: 50px;
    
}

.pressed {
    border:2px solid rgb(115, 155, 255);
}
