

body {
    background-color: yellow;
    font-family: Arial, sans-serif;
}

h1 {
    text-align: center;
}

#colorDisplay {
    text-align: center;
    font-size: 24px;
    margin: 20px;
}

.button-container {
    display: flex;
    justify-content: center;
}

.color-button {
    width: 100px;
    height: 100px;
    margin: 10px;
    border: none;
    cursor: pointer;
}

#message {
    text-align: center;
    font-size: 20px;
}

#reset {
    display: block;
    margin: 20px auto;
}

