/*CSS for Element Selectors*/

* {
    font-family: arial;
    text-align: center;
}

p {
    color: orangered;
    font-weight: bold;
}

#id {
    color: forestgreen;
    font-family: monospace;
}

.class {
    color: dodgerblue;
    font-weight: 100;
    font-size: 12px;
}