av-gallery .frame {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  text-align: center;
  aspect-ratio: 3.2/1;
  min-height: max-content;
}
av-gallery .frame > div {
  display: flex;
  height: 100%;
  padding: 1rem;
  box-sizing: border-box;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
}
av-gallery .frame > div > h2 {
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: normal;
  margin: 0;
  padding: 0.5rem;
}
av-gallery .frame > div > div {
  padding: 0.5rem 1rem;
}
av-gallery .frame > div a {
  color: inherit;
  display: block;
  line-height: 2.5rem;
  border: 1px solid white;
  padding: 0 2rem;
  text-decoration: none;
  border-radius: 0.5rem;
  transition-property: "background-color color";
  -webkit-transition-property: "background-color color";
  -moz-transition-property: "background-color color";
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
}
av-gallery .frame > div a:hover {
  background-color: white;
  color: black;
  text-shadow: none;
}
av-gallery .frame.warm {
  color: white;
}
av-gallery .frame.warm > div {
  text-shadow: 0 0 2px black;
}
av-gallery .frame.warm > div > * {
  background-color: rgba(180, 160, 90, 0.25);
}

@media screen and (max-width: 1080px) {
  av-gallery .frame {
    aspect-ratio: initial;
  }
  av-gallery .frame > div h2 {
    font-size: 2rem;
  }
  av-gallery .frame > div > div {
    display: none;
  }
}

/*# sourceMappingURL=index.css.map */
