/* ID is stronger than CLASS CLASS is stronger than ELEMENT */

#body {
    background-color: orange;
}

.body {
    background-color: blue;
}

body {
    background-color: red !important;
}