* {
    font-family: arial;
}
.title {
    text-align: center;
}

#container {
    color: red;
}

p {
    text-align: center;
    font-size: 50px;
    color: green;
}

.inherit {
    color: inherit;
}

.initial {
    color: initial;
}

.unset {
    color: unset;
}
/*I dont know what went wrong with revert here, it did not stay green like the video said
and I've double checked every line of code*/
.revert {
    color: revert;
}