*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.color {
    background-color: white;
    padding: 1rem;
    border: 2px solid black;
    border-radius: 1rem;
    min-width: 300px;
}

#newColor {
    background-color: white;
    border-radius: 0.5rem;
    padding: 0.5rem;
    border: 2px solid black;
}