@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInMoveRight {
  0% {
    opacity: 0;
    transform: translateX(-0.1%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes fadeInLow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.2;
  }
}
@keyframes flickerIn {
  0% {
    opacity: 0.1;
  }
  14% {
    opacity: 0.2;
  }
  15% {
    opacity: 0.5;
  }
  20% {
    opacity: 0.2;
  }
  30% {
    opacity: 0.7;
  }
  35% {
    opacity: 0.5;
  }
  60% {
    opacity: 0.5;
  }
  95% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
* {
  box-sizing: border-box;
}

html, body {
  background: #000;
  margin: 0;
  padding: 0;
  color: #fff;
}

h1 {
  font-family: "Gabarito", sans-serif;
  font-weight: 900;
  font-size: 4rem;
}

h2 {
  font-family: "Gabarito", sans-serif;
  font-weight: 900;
  font-size: 2rem;
}

h3 {
  font-family: "Gabarito", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
}

p, ul {
  font-family: "Gabarito", sans-serif;
  font-size: 1rem;
}

a {
  font-family: "Gabarito", sans-serif;
  color: #fff;
  font-size: 1rem;
}

nav a {
  text-decoration: none;
}

.splash {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-content: center;
  justify-content: center;
}
.splash .logo {
  width: 100%;
  height: auto;
  aspect-ratio: 5412/3584;
}
@media (min-aspect-ratio: 5412/3584) {
  .splash .logo {
    width: auto;
    height: 100%;
  }
}
.splash .logo svg {
  width: 100%;
  height: 100%;
}
.splash .logo svg #logo {
  z-index: 2;
}
.splash .logo svg #logo #main {
  opacity: 0.1;
  animation: flickerIn 1s ease-in-out forwards;
  animation-delay: 0.5s;
}
.splash .logo svg #logo #orange {
  opacity: 0;
  animation: fadeIn 2s ease-in-out forwards;
  animation-delay: 2s;
}
.splash .logo svg #background {
  opacity: 0;
  animation: fadeInLow 5s ease forwards;
  animation-delay: 5s;
}
.splash .logo svg #text {
  opacity: 0;
  animation: fadeInMoveRight 2s ease forwards;
  animation-delay: 1.5s;
}

.frame {
  margin: 0 auto 0 auto;
  width: 100%;
  padding: 100px 50px 100px 50px;
}
.frame.game {
  background-image: url("./spellsided-splash.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: min-content min-content min-content;
  grid-template-areas: "logo" "card" "video";
  grid-gap: 32px;
  justify-items: center;
  align-items: center;
}
@media (min-width: 1280px) {
  .frame.game {
    grid-template-columns: 1fr 560px auto 1fr;
    grid-template-rows: min-content min-content;
    grid-template-areas: ". logo card ." ". video video .";
  }
}
.frame.game .video {
  grid-area: video;
  width: 100%;
  max-width: 900px;
}
.frame.game .video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
}
.frame.game .logo {
  grid-area: logo;
  max-width: 560px;
}
.frame.game .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.frame.game .card {
  grid-area: card;
  max-width: 900px;
  padding: 32px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}
@media (max-width: 1280px) {
  .frame.game .card {
    background: rgba(0, 0, 0, 0.5);
  }
}
.frame.bio h1, .frame.bio h2, .frame.bio h3 {
  text-align: center;
}
.frame.bio .about {
  margin: auto;
  max-width: 800px;
}
.frame.bio .team {
  margin: auto;
}
.frame.bio .team .cardbox {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1280px;
}
.frame.bio .team .cardbox .card {
  margin: 16px;
  max-width: 300px;
  height: min-content;
  background: #111;
  outline: 0 solid rgb(255, 102, 0);
  transition: outline-width 0.1s linear 0s;
  box-sizing: content-box;
}
.frame.bio .team .cardbox .card img {
  width: 300px;
}
.frame.bio .team .cardbox .card .cardtext {
  margin-top: -180px;
  position: relative;
  width: 100%;
  padding: 8px 32px;
  background: rgba(0, 0, 0, 0.5);
  max-height: 210px;
  min-height: 210px;
  overflow: hidden;
  transition: 0.5s ease 0s;
  backdrop-filter: blur(4px);
}
.frame.bio .team .cardbox .card .cardtext h2 {
  margin-top: 16px;
  margin-bottom: 0;
}
.frame.bio .team .cardbox .card .cardtext h3 {
  margin-top: 0;
}
.frame.bio .team .cardbox .card .handle h3 {
  margin-top: 0;
  margin-bottom: 8px;
}
.frame.bio .team .cardbox .card:hover {
  outline: 4px solid rgb(255, 102, 0);
}
.frame.bio .team .cardbox .card:hover .cardtext {
  max-height: 500px;
  margin-top: -220px;
  background: rgba(32, 32, 32, 0.5);
  backdrop-filter: blur(16px);
}
.frame.audio {
  background: #111;
  margin: auto;
}
.frame.audio .textcontainer {
  margin: auto;
  max-width: 800px;
}
.frame.audio h1 {
  text-align: center;
}

footer {
  padding: 32px;
  background-color: #000;
  text-align: center;
}

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