* {
    font-family: arial;
}

.title {
    text-align: center;
}

/* ID > CLASS > ELEMENT */

#body {
    background-color: orange;
}

.body {
    background-color: blue;
}

body {
    background-color: red !important;
}