h2 {
    font-family: arial;
    text-align: center;
}

input[type] {
    border: 2px solid orangered;
}



input[type="text"] {
    background-color: palegreen;
}

input[type="email"] {
    background-color: aqua;
}

input[type="button"] {
    border: 2px solid green;
    background-color: dodgerblue;
    color: white;
    font-weight: bold;
    cursor: pointer;
}


p[title^="I"] {
    color: dodgerblue;
}


p[title$="fox"] {
    color: red;
}


p[title~="Dreamer"] {
    text-decoration: underline;
}


