/* Welcome to the Zoey Zone */
@font-face {
  font-family: 'Hanken Grotesque';
  src: url('../fonts/HankenGrotesk-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 100 1000;
  font-stretch: 50% 150%;
  font-display: swap;
}

@font-face {
  font-family: "Basteleur";
  src: url("../fonts/Basteleur-Bold.woff2") format("woff2"),
       url("../fonts/Basteleur-Bold.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@keyframes spin {
  from {
      transform: rotate(0deg);
  } to {
      transform: rotate(360deg);
  }
}

.spin {
  animation-name: spin;
  animation-duration: 4000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}

html {
  color: #d1eaff;
}

body {
  margin: 0;
  color: #fad1ff;
  -webkit-backdrop-filter: blur(75px);
  backdrop-filter: blur(75px);
  min-height: 100svh;
  font-family: 'Hanken Grotesque';
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  background-color: #231650;
  background-size: 100% 100%;
  background-position: 0px 0px,0px 0px,0px 0px,0px 0px,0px 0px,0px 0px;
  background-image: radial-gradient(50% 100% at 66% 39%, #F833D838 24%, #073AFF00 100%),linear-gradient(0deg, #73D88B80 2%, #003AFF00 41%),radial-gradient(74% 86% at 2% 84%, #9A45B2F5 24%, #073AFF00 100%),radial-gradient(50% 56% at 104% 71%, #8A4FFFF5 9%, #073AFF00 100%),linear-gradient(125deg, #055068FF 1%, #4C00FCFF 100%);
  padding: 0 2rem;
}

.intro {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 80vw;
  padding: 3em;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 1/1;
  margin: 2rem auto;
  transition: 200ms ease;
  position: relative;
}

.spinner-wrap {
  position: relative;
  top: 26px;
  mix-blend-mode: overlay;
  transform: scale(1);
  opacity: 0;
  pointer-events: none;
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

.intro:hover .spinner-wrap {
  transform: scale(2);
  opacity: 1;
  transition: transform 2s ease-in-out, opacity 3s ease-in-out;
}
.spinner-item {
  border: 2px solid #fff;
  border-radius: 50%;
  height: 600px;
  width: 600px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-animation: zoom 4s linear 0.5s infinite;
          animation: zoom 4s linear 0.5s infinite;
}
.spinner-item--2 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.spinner-item--3 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.spinner-item--4 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.spinner-item--5 {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}
.spinner-item--6 {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
.spinner-item--7 {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}
.spinner-item--8 {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

@keyframes zoom {
  0% {
    transform: translate(-50%, -50%) scale(.2);
    border-width: 10px;
    opacity: 0;
  }
  10% {
    opacity: 0.9;
  }
  50% {
    border-width: 2px;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    border-width: 1px;
  }
}

.intro:hover:before {
  background: repeating-radial-gradient(#fff 10%, transparent 11%, transparent 21%, #fff 22%);
  transform: scale(14);
}

.intro:after {
  border-radius: 50%;
  border: 4px solid #fff;
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  mix-blend-mode: overlay;
}

.intro span {
  font-weight: 250;
  display: block;
  font-size: .625em;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: 200ms ease;
}

h1 {
  font-weight: 200;
  font-size: 1.75em;
  transition: 200ms ease;
  text-align: center;
  margin: 0;
}

.links ul {
  padding-left: 0;
  margin: 2rem 0;
  list-style-type: none;
}

.links li {
  margin-bottom: 2rem;
}

.links h2 {
  font-size: 1.25em;
  margin-bottom: .25rem;
}
.links h2 + p {
  margin-top: .25rem;
}

.links p span {
  color: rgba(255,255,255,.2);
  position: relative;
}

.links a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: 200ms ease-in-out;
  border-bottom: 1px solid transparent;
  position: relative;
}

.links a:after {
  content: '';
  width: 0%;
  height: 1px;
  background-color: #fad1ff;
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  transition: 200ms ease;
}

.links a:hover:after {
  width: 100%;
}

.links p span:after {
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  mix-blend-mode: overlay;
}

.links li:nth-child(1) p span:after {
  content: 'Based on the Twilight Mirage season of the tabletop roleplaying podcast,';
}

.links li:nth-child(2) p span:after {
  content: 'Name generator for the tabletop role-playing game,';
}

.links li:nth-child(3) p span:after {
  content: 'Name generator for the five-minute interrogation game of cops and robots,';
}

.links li:nth-child(4) p span:after {
  content: 'Character generator for the tabletop role-playing game,';
}

.links li:nth-child(5) p span:after {
  content: 'Oracles for the tabletop role-playing game,';
}

.links li:nth-child(6) p span:after {
  content: 'Angel name generator based on the webcomic,';
}

.links li:nth-child(7) p span:after {
  content: 'Name generator for not quite real baseball player names.';
}

@media screen and (max-width: 768px) {
  .links p,
  .links p span,
  .links p span:after {
    width: 80vw;
    font-size: 16px;
  }
}


