body{
  background-color: tan;
}
header{
  text-align: center;
  color: white;
  background-color: tan;
  text-shadow: 2px 2px black;
  border-radius: 10px;
  font-size: 100px;
  font-family: sans-serif;
}
dl{
  text-align: center;
  color: white;
  background-color: tan;
  text-shadow: 2px 2px black;
  border-radius: 10px;
  font-size: 30px;
  font-family: sans-serif;
}
dl u{
  text-decoration-color: black;
}

dt{
  text-align: left;
  color: white;
  background-color: blue;
  text-shadow: 2px 2px black;
  border-radius: 10px;
  font-size: 25px;
  font-family: sans-serif;
  width: 140px;
}
dd{
  text-align: justify;
  color: white;
  background-color: brown;
  text-shadow: 2px 2px black;
  border-radius: 10px;
  font-size: 25px;
  font-family: sans-serif;
}
p{
  color: white;
  text-align: justify;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  border-radius: 15px;
  border: 2px solid saddlebrown;
  text-shadow: 2px 2px black;
  display:block;
  margin:0 auto;
}
.gallery {
  column-count: 3; /* Number of columns */  column-gap: 15px;
}

.gallery img {
  width: 100%;
  display: block;
  margin-bottom: 15px; /* Spacing between images vertically */  border-radius: 8px;
}
/* Responsive adjustment */@media (max-width: 800px) {
  .gallery { column-count: 2; }
}@media (max-width: 500px) {
  .gallery { column-count: 1; }
}
