body {
    background-color: powderblue;
}

hr {
    border-style: none;
    border-top-style: dotted;
    border-color: gray;
    border-width: 10px;
    width: 20%;
}

img {
    height: 250px;
    width: 280px;
}

/*
h1 {
    color: #9141db;
}

h3 {
    color: #9141db;
}
*/

.bacon {
    color: #9141db;
}

/*This is how we do it with ids*/

/*IDs are much more specific and can ovverwrite the classes if
they target the same element(s)*/
#brocolli {
    color: #ff0000;
}