#top {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("img/band_big.jpg");
  height: 100vh; /* Set a height */
  width: 100%; /* Set a width */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  background-size: cover; /* Ensures the image covers the entire div */
  background-position: center; /* Centers the image within the div */
  font-size: 25pt;
  font-family: Roboto, sans-serif;
  text-align: left;
  letter-spacing: 1.5px;
}
#top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#mid {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("img/kilt.jpg");
  background-repeat: no-repeat; /* Prevents the image from repeating */
  background-size: cover; /* Ensures the image covers the entire div */
  background-position: center; /* Centers the image within the div */
  padding: 80px 40px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap; /* stacks on small screens */
}

#mid > div {
  flex: 1 1 450px; /* grow, shrink, base width */
  max-width: 600px;
  text-align: center;
}

#mid img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 8px;
}
body {
  margin: 0;
  color: aliceblue;
}

#top h1 {
  font-size: 15pt;
  font-weight: 500;
  margin: 0%;
}

#top div {
  font-size: 25.3333px;
  font-weight: 700;
  line-height: 39.5167px;
  overflow-wrap: break-word;
  text-align: center;
  max-width: 475px; /* The maximum width the element will reach */
  margin-left: auto; /* Center it on the screen */
  margin-right: auto; /* Center it on the screen */
  margin-top: 33vh;
}

#footer {
  background-color: #111;
  padding: 30px 20px;
  text-align: center;
}

#footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer li {
  display: inline-block;
  margin: 0 20px;
}

#footer a {
  text-decoration: none;
  color: aliceblue;
  font-weight: 600;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
}

#footer a:hover {
  opacity: 0.7;
}
