/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */



body {
  background-color: white;
  color: white;
  font-family: monospace;
  background-size: cover;        background-repeat: no-repeat;
  background-image: url("/images/background.JPG");
  background-position: center center;
  background-attachment: fixed;

}

.feature-main {
  background-color: #89b384;
  padding: 20px;
  border-radius: 6px;
}

.feature-links {
  background-color: #5fb056;
  padding: 15px;
  border-radius: 6px;
  font-size: smaller;
}

#topFeature {
  display: grid;
  grid-template-columns: 6fr 1fr;
  gap: 20px;

  max-width: 1000px;
  margin: 20px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.photo-grid img {
  width: 100%;
  height: auto;
  display: block;
}

.album-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}

.album {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  background-color: #89b384;
  padding: 20px;
  border-radius: 6px;
}

.album img {
  width: 100%;
  height: auto;
  display: block;
}

.album-info h2 {
  margin: 0;
}

.album-info h3 {
  margin: 5px 0 10px;
  font-weight: normal;
  opacity: 0.8;
}

.album-info p {
  margin-bottom: 15px;
  line-height: 1.4;
}

.album-link {
  display: inline-block;
  font-weight: bold;
  color: #e2e8ac;
  text-decoration: none;
}

.album-link:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 800px) {
  .album {
    grid-template-columns: 1fr;
  }

  .album img {
    max-width: 200px;
  }
}

