/* Applies to the entire body of the HTML document (except where overridden by more specific
selectors). */




/* Applies to the element with <... id="someid"> specified. */
#someid { color: green; }

.blur {
    -webkit-filter: blur(5px);
    filter: blur(5px);
}
