/* Element selector */
body {
  font-family: Arial, sans-serif;
  background-color: #f7f7f7;
  margin: 20px;
}

/* Class selector */
.highlight {
  color: darkgreen;
  font-weight: bold;
}

/* ID selector */
#main-title {
  color: navy;
  text-align: center;
}
