h1 {
  text-align: center;
  margin: 1.5rem 0;
  color: #25313C;
}

a {
  text-decoration: none;
}

hr {
  max-width: 800px;
  height: 2px;
  margin: 2rem auto;
  background-color: #fac59e;
  border: none;
}

#gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 275px);
  grid-gap: 20px;
  justify-items: center;
  list-style: none;
  width: 825px;
  margin: 1.25rem auto;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 275px;
  height: 275px;
}

.gallery-item img {
  width: 275px;
  height: 275px;
  object-fit: cover;
  border-radius: 6px;
}

#gallery-info {
  text-align: center;
  color: #25313C;
}

#gallery-info h2 {
  font-size: 1.125rem;
}

#gallery-info hr {
  width: 1.375rem;
  margin: 0 auto;
  background-color: #25313C;
  height: 1px;
  border: none;
}

#gallery-info p {
  font-size: 1rem;
  margin: 0.25rem 0;
  color: #626262;
}

@media (max-width: 1120px) {
  #gallery-grid {
    grid-template-columns: repeat(2, 275px);
    width: 550px;
  }
}

@media (max-width: 750px) {
  #gallery-grid {
    grid-template-columns: 275px;
    width: 275px;
  }
}
