body {
    background-color: black;
    margin: 0;
    padding: 0;
}

#pixels {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid rgb(128, 128, 128);
}

.pixel {
    width: 3px;
    aspect-ratio: 1;
    display: flex;
}

.corR {
    width: 33.33%;
    height: 100%;
    background-color: rgb(0, 0, 0);
}

.corG {
    width: 33.33%;
    height: 100%;
    background-color: rgb(0, 0, 0);
}

.corB {
    width: 33.33%;
    height: 100%;
    background-color: rgb(0, 0, 0);
}

#corR {
    background: linear-gradient(to right, rgb(0, 0, 0), rgb(255, 0, 0));
}

#corG {
    background: linear-gradient(to right, rgb(0, 0, 0), rgb(0, 255, 0));
}

#corB {
    background: linear-gradient(to right, rgb(0, 0, 0), rgb(0, 0, 255));
}

#mudarTamanho {
    background-color: gray;
    clip-path: polygon(0% 30%, 100% 0%, 100% 100%, 0% 70%);
    border-radius: 0px;
}

input {
    appearance: none;
    cursor: grab;
    height: 20px;
    border-radius: 10px;
    width: 70%;
    max-width: 400px;
    background: linear-gradient(to right, rgb(0, 0, 0), rgb(255, 255, 255));
    margin-left: 10px;
}

::-webkit-slider-thumb {
    appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    border: none;
}

::-moz-range-thumb {
    appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    border: none;
}

input:active {
    cursor: grabbing;
}

.ajuste {
    display: flex;
    flex-direction: column;
}