body.gallery section.hero {
  height: 30vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
body.gallery section.hero .hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
body.gallery section.hero a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 3rem;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.25rem;
  width: -moz-max-content;
  width: max-content;
  border: solid 1px var(--ea-orange);
  margin: 0 auto;
  border-radius: 4rem;
  transition: all 0.3s ease;
}
body.gallery section.hero a:hover {
  background-color: var(--ea-orange);
}
body.gallery section.hero h3 {
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--ea-orange);
  text-align: center;
  font-weight: 400;
}
body.gallery section.hero h1 {
  font-size: 4rem;
  color: var(--ea-orange);
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
}
body.gallery section.hero h1 span {
  color: var(--ea-orange);
}
body.gallery section.gallery-main {
  padding: 4rem 8rem;
  padding-top: 8rem;
  width: 100%;
  max-width: 1800px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
body.gallery section.gallery-main img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  body.gallery section.hero .hero-content {
    padding-top: 4rem;
    height: 12rem;
    padding-bottom: 1rem;
  }
  body.gallery section.hero .hero-content a {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }
  body.gallery section.hero .hero-content h1 {
    font-size: 2.5rem;
  }
  body.gallery section.hero .hero-content h3 {
    font-size: 1rem;
  }
  body.gallery section.gallery-main {
    padding: 2rem;
    margin-top: 8rem;
  }
}/*# sourceMappingURL=gallery.css.map */