/* This is a CSS comment */

/* Styles the background color and font family for the entire body of the page */
body {
  background-color: powderblue;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
}

/* Styles all H1 headings */
h1 {
  color: blue;
  font-size: 2.5rem;
  text-align: center;
}

/* Styles all paragraphs */
p {
  color: red;
  font-size: 1rem;
  border: 1px solid black;
  padding: 10px;
}

/* Styles elements with the class "my-class" */
.my-class {
  border-radius: 5px;
  margin-top: 15px;
}

/* Styles the element with the ID "special-section" */
#special-section {
  background-color: #f0f0f0;
  padding: 20px;
}
