body {
    background-color: rgb(6, 123, 206);
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

ul {
    list-style-type: disc;
    color: blue;
}

button {
    background-color: yellow;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
}

fieldset {
    border: 0;
}

input {
    padding: 10px;
    border: 0;
}

* {
    border-radius: 5px;
    /* Ensure all elements have rounded corners */
    text-align: center;
    /* Center-align all text and elements */
}

ul {
    list-style-type: disc;
    color: blue;
    margin: 10px 0;
    /* Add margin for spacing between list items */
}

button {
    background-color: yellow;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    margin: 10px 0;
    /* Add margin for spacing */
}