body {
  background: rgb(21, 88, 133);
  text-align: center; /* Centering text */
}

p {
  color: rgb(76, 17, 17); /* Set paragraph font color */
  font-size: 20px; /* Set paragraph font size to 20px */
}

a {
  color: rgba(6, 6, 6, 0.8); /* Default link color */
}

a:hover {
  color: rgb(255, 0, 0); /* Change color on hover */
}

h1 {
  font-weight: bold;
  font-size: 36px; /* Set header 1 font size to 36px */
}

h2 {
  font-size: 30px; /* Set header 2 font size to 30px */
}

img {
  border: 5px solid rgba(21, 27, 133, 0.78);
  display: block; /* Ensures the image is treated as a block element */
  margin: 0 auto; /* Centers the image */
}
