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

/* Class selector */
.section-title {
  color: blue;
  font-weight: bold;
}

/* ID selector */
#main-header {
  font-size: 30px;
  color: darkgreen;
}
