/* Element selector for all h5 elements */
h5 {
  color: darkred;
  text-decoration: underline;
}

/* Class selector for all subtitle elements */
.subtitle {
  color: navy;
  font-style: italic;
}

/* ID selector for just the main title */
#main-title {
  color: darkgreen;
  font-size: 32px;
  text-align: center;
  text-transform: uppercase;
}
