/* Element selector */
body {
  font-family: Arial;
  background-color: #f0f0f0;
}

/* Class selector */
.description {
  color: #333;
  font-size: 16px;
}

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

