h1 {
  margin: 0;
  font-family: "Audiowide", sans-serif;
  font-size: 56px;
  color: var(--secondary-light-color);
  text-shadow: 0 0 12px var(--transparent-purple-color);
}

#shrines-list {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 64px;

  @media only screen and (max-width: 767px) {
    width: 100%;
    height: 100%;
    flex-direction: column;
    padding: 16px;
    gap: 24px;
  }

  @media only screen and (min-width: 768px) {
    width: 100%;
    height: 100%;
    max-width: 991px;
    max-height: 700px;
  }

  @media only screen and (min-width: 992px) {
    width: 100%;
    height: 100%;
    max-width: 992px;
    max-height: 768px;
  }

  @media only screen and (min-width: 1200px) {
    width: 100%;
    height: 100%;
    max-width: 992px;
    max-height: 800px;
  }
}

a {
  width: fit-content;
}

a:hover img {
  filter: brightness(105%);
  transform: rotate(-5deg);
  transition: 200ms linear all;
}

#animal-crossing img {
  @media only screen and (max-width: 767px) {
    width: 80%;
  }
}

#virtual-pets img {
  @media only screen and (max-width: 767px) {
    width: 80%;
  }
}
