h1 {
  margin: 0 0 32px 0;
  font-size: 56px;
  color: var(--secondary-light-color);
  text-shadow: 0 0 12px var(--transparent-purple-color);
  text-align: center;
}

#pages-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%;
    flex-direction: column;
    max-width: 991px;
    max-height: 700px;
  }

  @media only screen and (min-width: 992px) {
    width: 100%;
    height: 100%;
    flex-direction: column;
    max-width: 992px;
    max-height: 768px;
  }

  @media only screen and (min-width: 1200px) {
    width: 100%;
    height: 100%;
    flex-direction: row;
    max-width: 992px;
    max-height: 800px;
  }
}

.page-link {
  height: 300px;
  aspect-ratio: 1;
  border-radius: 100%;
  display: flex;
  flex-direction: column;
  background: var(--transparent-white-color);
  position: relative;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px var(--transparent-purple-color);
}

.page-link:hover {
  box-shadow: 0 0 12px var(--transparent-purple-color);
}

.page-link img {
  position: absolute;
}

.page-link:hover img {
  filter: brightness(105%);
  transform: rotate(-5deg);
  transition: 200ms linear all;
}

.page-link:hover span {
  text-shadow: 0 0 8px var(--transparent-purple-color);
}

.page-name {
  position: absolute;
  line-height: 100%;
  font-size: 56px;
  font-weight: bold;
  text-align: center;
  bottom: 0;
}

#radio img {
  margin-left: 32px;
}
