/* 
Select by descendant element: All descendant elements of the fieldset should have their text transformed to uppercase.
*/

input {
    margin-top: 5px;
    padding: 3px;
}

#submitButton {
    border-radius: 5px;
}

.lorem {
    font-family: 'Wingdings';
}

:required {
    background-color: yellow;
}

::after label {
    content: ':';
}

label ~ input {
    margin-left: 10px;
}

body > * {
    margin-top: 10px;
    margin-bottom: 10px;
}

p {
    color: blue;
}

fieldset * {
    text-transform: uppercase;
}