body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
}

.container {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    padding: 1em;
    gap: 1em;
}
select, .color-picker, button {
    border: 1px solid #D1D5DB;
    border-radius: 3px;
    background-color: white;
}
select, button {
    padding: 0.5em ;
}
select {
    width: 50vw;
}
.color-picker {
    block-size: 32px;
}
button {
    font-size: 0.75rem;
}
.color-palette {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    box-sizing: border-box;
}
.color {
    width: 20%;
    height: 260px;
    text-align: center;
    font-size: 12px;
}
.color-space {
    height: 90%;
}