* {
    box-sizing: border-box;
    font-family: Helvetica, sans-serif;
    margin: 0px;
    padding: 0px;
}

body {
    display: flex;
    flex-direction: row;
}

.shape-selection {
    display: flex;
    justify-content: center;
    padding: 25px;
    min-width: 200px;
    background-color: lightpink;
}

.rectangle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 75px;
    background-color: white;
    border: 3px solid black;
    font: 20px sans-serif;
    cursor: grab;
}

canvas {
    border: 1px solid black;
    image-rendering: pixelated;
}

p {
    position: absolute;
    font: 20px sans-serif;
}

.color-menu {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    min-width: 100px;
    background-color: lightgray;
}

.color-menu__button {
    font: 20px sans-serif;
}