/* Class selector for the headline */
.headline {
  color: red;
  text-decoration: underline;
  text-decoration-style: dotted;
}

/* ID selector for the div */
#myElement {
  float: left;
  background-color: tan;
  font-family: Verdana, sans-serif;
  font-size: large;
  padding: 20px;
}
