input {
    margin-top: 5px;
    padding: 3px;
}
#submitbutton {
    border:5px solid black;
}
.lorem {
    font-family: 'Wingdings';
}
input[required] {
    background-color: yellow;
}
    input+label {margin-left: 10px;}
    body > * {margin-top: 10px; margin-bottom: 10px;}
        #submitButton {
            border: 5px solid black;
        }
        input {
    margin-top: 5px;
    padding: 3px;
    background-color: yellow;}
    label::after {
    content: ":";}
    fieldset * {
    text-transform: uppercase;}
    input+label {margin-left: 10px;}
    body > * {margin-top: 10px; margin-bottom: 10px;}
    p ~ p {color :blue ;}

/* Select by element: All input elements should have a top margin of 5 pixels and a padding of 3 pixels. done
Select by id: Select the submit button by its identifier and give it a border radius of 5 pixels. done
Select by class: All elements of class "lorem" should have their font changed to "Wingdings". done
Select by attribute: All required inputs should have their background color changed to yellow.
Select using a pseudo-element: All labels should have a colon, ":", appended to them.
Select by adjacent element: All inputs that are adjacent to labels should have a left margin of 10 pixels.
Select by child element: All direct children of the body should have a top and bottom margin of 10 pixels.
Select by sibling element: All paragraphs that are siblings of other paragraphs should have a different text color (your choice).
Select by descendant element: All descendant elements of the fieldset should have their text transformed to uppercase. */