.rowColor {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    border: 1px solid #212121;
}

.rowColor.purple, .rowColor.pink, .rowColor.blue, .rowColor.green, .rowColor.orange, .rowColor.white {
    border: 1px solid transparent;
}

.rowColor.purple, button.purple {
    background-color: purple;
}

.rowColor.pink, button.pink {
    background-color: pink;
}

.rowColor.blue, button.blue {
    background-color: blue;
}

.rowColor.green, button.green {
    background-color: green;
}

.rowColor.orange, button.orange {
    background-color: orange;
}

.rowColor.white, button.white {
    background-color: black;
}

.row.guess {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.row.guess h1 {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

@media screen and (prefers-color-scheme: dark) {
.rowColor {
    border: 1px solid #fafafa;
}
.rowColor.white, button.white {
    background-color: #fafafa;
}
}