/* Selects all paragraph elements */
p {
  color: #333; /* Sets the text color to a dark grey */
  font-family: Arial, sans-serif; /* Specifies the font */
  font-size: 16px; /* Sets the size of the text */
  font-weight: bold; /* Makes the text bold */
  text-align: center; /* Aligns the text to the center */
  text-transform: uppercase; /* Converts text to uppercase */
  letter-spacing: 1px; /* Adds space between letters */
  line-height: 1.5; /* Sets the height of each line of text */
  text-shadow: 2px 2px 4px #aaa; /* Adds a shadow to the text */
}

/* Selects an element with the class "highlight" */
.highlight {
  background-color: yellow; /* Sets a yellow background behind the text */
  padding: 5px; /* Adds space around the text within the background */
}
