/*
Angelo Hoeung
Feb. 10, 2025 
*/

/* All paragraphs are blue */
p {
  color: blue;
}

/* All elements with this class are small */
.small {
  font-size: 0.8em;
}

/* The element with this ID is large */
#largeP {
  font-size: 2em;
}

/* The element with this ID is large */
#largeH {
  font-size: 2em;
}

/* Buttons are green when hovered */
button:hover {
  background-color: green;
}

/* The first h3 element is red */
h3:first-of-type {
  color: red;
}
