body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: black;
  width: 100%;
  overflow: hidden;
  max-width: 100%;
  max-height: 100vh;
  position: relative;
}
header {
  height: 100px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column nowrap;
  color: black;
  font-family: Montserrat;
  position: absolute;
  top: 20px;
  overflow: hidden;
}
.light {
  height: 100px;
  width: 100px;
  filter: blur(9px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 50%;
  background-color: white;
  opacity: 0;
  transition: opacity 0.1s ease-in;
}
.active .light {
  opacity: 1;
  animation: blinkLight 10s linear infinite;
}
@keyframes blinkLight {
  from,
  to,
  18%,
  22%,
  35%,
  38%,
  45.5%,
  46.5%,
  47.5%,
  65%,
  69%,
  80%,
  80.5%,
  81%,
  81.5% {
    opacity: 1;
  }
  20%,
  35.5%,
  46%,
  47%,
  66%,
  68%,
  80.25%,
  80.75%,
  81.25% {
    opacity: 0;
  }
}
header.hint .light {
  opacity: 0;
}
.text {
  mix-blend-mode: multiply;
  position: relative;
  width: fit-content;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 64px;
  line-height: 65px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: black;
  color: white;
  z-index: 100;
  user-select: none;
}
.static .text {
  mix-blend-mode: normal;
  animation: none;
}
.static .light {
  display: none;
  z-index: -1000;
}
@media screen and (max-width: 900px) {
  .text {
    font-size: 48px;
    line-height: 48px;
  }
}
@media screen and (max-width: 700px) {
  .text {
    font-size: 32px;
    line-height: 32px;
  }
}
@media screen and (max-width: 500px) {
  .text {
    font-size: 24px;
    line-height: 24px;
  }
}
@media screen and (max-width: 380px) {
  .text {
    font-size: 16px;
    line-height: 16px;
  }
}
header.hint .text {
  animation: hint 5s ease-in-out;
}
@keyframes hint {
  from {
    mix-blend-mode: normal;
    opacity: 0;
  }
  50% {
    opacity: 0.1;
    color: #ee5252;
  }
  to {
    opacity: 0;
    mix-blend-mode: normal;
  }
}
.emoji-wrapper {
  display: flex;
  transform-origin: center center;
  transition: all 0.4s cubic-bezier(0.85, 0, 0.15, 1);
}
.emoji-wrapper-hide {
  transform: scale(0.5);
}
.emoji {
  position: relative;
  width: 230px;
  height: 230px;
  transform: translate3d(0, 0, 0);
}
.layer {
  position: absolute;
  width: 100%;
  height: 100%;
}
.face {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 230px;
  height: 230px;
  background-color: #feca32;
  border-radius: 100%;
  box-shadow: inset rgba(0, 0, 0, 0.2) 0 0 26px;
  background: rgb(249, 222, 75);
  background-image: radial-gradient(
      circle,
      rgba(249, 222, 75, 0.2) 0%,
      rgba(220, 120, 45, 0.2) 95%,
      rgba(220, 120, 45, 0.2) 100%
    ),
    url("/assets/bg.png");
  background-size: cover, 273px;
  background-repeat: no-repeat, no-repeat;
  background-position: center center, center center;
}

.shine {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 206px;
  height: 206px;
  background: linear-gradient(
    to bottom,
    #fefde9,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0)
  );
  border-radius: 100%;
  opacity: 0.8;
}

.active .eye {
  transform: scaleY(0.35) scaleX(2);
}
.eye {
  width: 24px;
  height: 38px;
  background-color: #a1620f;
  border-radius: 100%;
  box-shadow: inset rgba(0, 0, 0, 0.5) 0 6px 12px,
    rgba(255, 255, 255, 0.2) 0 2px 0 2px;
  transition: transform 0.2s ease-in;
  transform-origin: center center;
}
body:not(.active) .eye {
  transform: scaleY(1) scaleX(1);
  -webkit-animation: blink 5s infinite;
  animation: blink 5s infinite;
}
.eye.left {
  position: absolute;
  top: 0;
  right: 70px;
  bottom: 40px;
  left: 0;
  margin: auto;
}
.eye.right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 40px;
  left: 70px;
  margin: auto;
}

.mouth {
  position: absolute;
  top: 88px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  overflow: hidden;
  width: 94px;
  height: 48px;
  transform: translate3d(0, 0, 0);
}
.mouth:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 10px;
  left: 0;
  margin: auto;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #6e440b;
  border-radius: 100%;
  box-shadow: rgba(255, 255, 255, 0.25) 0 3px 0;
  transform: scale(1);
}
.mouth:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 26px;
  left: 0;
  margin: auto;
  content: "";
  width: calc(100% - 20px);
  height: 100%;
  background-color: #feca32;
  border-radius: 100%;
  box-shadow: rgba(0, 0, 0, 0.8) 0 4px 4px -4px;
  transform-origin: 50% 100%;
  transform: scale(1.6);
}

@-webkit-keyframes blink {
  0%,
  96% {
    transform: scaleY(1);
  }
  98% {
    transform: scaleY(0.1);
  }
  100% {
    transform: scaleY(1);
  }
}

@keyframes blink {
  0%,
  96% {
    transform: scaleY(1);
  }
  98% {
    transform: scaleY(0.1);
  }
  100% {
    transform: scaleY(1);
  }
}
footer {
  position: absolute;
  bottom: 0;
  width: 50%;
  max-width: calc(100vw - 8px);
  min-width: 500px;
  height: 100px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-evenly;
  transform-origin: center bottom;
}
@media screen and (max-width: 500px) {
  footer {
    transform: scale(0.9);
  }
}
@media screen and (max-width: 400px) {
  footer {
    transform: scale(0.7);
  }
}
@media screen and (max-width: 300px) {
  footer {
    transform: scale(0.5);
  }
}
footer > a {
  border-radius: 50%;
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: alias;
  transform-origin: center center;
  margin: 0 4px;
  outline: none;
  box-shadow: 0;
  border: none;
  position: relative;
  z-index: 10;
  text-decoration: none;
}
footer > a > span {
  font-size: 16px;
  line-height: 17px;
  font-family: Apple Color Emoji !important;
  text-decoration: none;
  height: fit-content;
  width: fit-content;
  cursor: inherit;
  display: flex;
  position: absolute;
  z-index: 10;
  height: 42px;
  width: 42px;
  align-items: center;
  transform-origin: center center;
  background-color: rgba(0, 0, 0, 1);
  transition: background-color 0.2s ease-in;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
footer > a::before {
  content: "";
  background-image: linear-gradient(100deg, #aa039f, #ed014d, #f67916);
  position: absolute;
  z-index: 1;
  height: 120%;
  width: 120%;
  filter: blur(15px);
  border-radius: 50%;
  transform-origin: center center;
  opacity: 0.8;
  transition: all 0.2s ease-in;
}
footer > a:hover > span {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(25px);
}
footer > a:hover::before {
  opacity: 1;
}
footer > a:active > span {
  transform: scale(0.95);
}
@keyframes show {
  from {
    opacity: 0;
    transform: scale(5);
  }
  50% {
    opacity: 0.7;
  }
}
@keyframes hide {
  from,
  to {
    opacity: 0;
    transform: scale(5);
  }
}
@keyframes gradientShow {
  from {
    opacity: 0;
    transform: scale(0);
  }
}
@keyframes gradientHide {
  from,
  to {
    opacity: 0;
    transform: scale(0);
  }
}
footer > a:nth-child(0) > span {
  animation: show 0.15s cubic-bezier(0, 0.55, 0.45, 1);
}
footer > a:nth-child(0)::before {
  animation: gradientShow 0.15s cubic-bezier(0, 0.55, 0.45, 1);
}
footer > a:nth-child(1) > span {
  animation: hide 0.05s linear, show 0.15s cubic-bezier(0, 0.55, 0.45, 1) 0.05s;
}
footer > a:nth-child(1)::before {
  animation: gradientHide 0.05s linear,
    gradientShow 0.15s cubic-bezier(0, 0.55, 0.45, 1) 0.05s;
}
footer > a:nth-child(2) > span {
  animation: hide 0.1s linear, show 0.15s cubic-bezier(0, 0.55, 0.45, 1) 0.1s;
}
footer > a:nth-child(2)::before {
  animation: gradientHide 0.1s linear,
    gradientShow 0.15s cubic-bezier(0, 0.55, 0.45, 1) 0.1s;
}
footer > a:nth-child(3) > span {
  animation: hide 0.15s linear, show 0.15s cubic-bezier(0, 0.55, 0.45, 1) 0.15s;
}
footer > a:nth-child(3)::before {
  animation: gradientHide 0.15s linear,
    gradientShow 0.15s cubic-bezier(0, 0.55, 0.45, 1) 0.15s;
}
footer > a:nth-child(4) > span {
  animation: hide 0.2s linear, show 0.15s cubic-bezier(0, 0.55, 0.45, 1) 0.2s;
}
footer > a:nth-child(4)::before {
  animation: gradientHide 0.2s linear,
    gradientShow 0.15s cubic-bezier(0, 0.55, 0.45, 1) 0.2s;
}
footer > a:nth-child(5) > span {
  animation: hide 0.25s linear, show 0.15s cubic-bezier(0, 0.55, 0.45, 1) 0.25s;
}
footer > a:nth-child(5)::before {
  animation: gradientHide 0.25s linear,
    gradientShow 0.15s cubic-bezier(0, 0.55, 0.45, 1) 0.25s;
}
footer > a:nth-child(6) > span {
  animation: hide 0.3s linear, show 0.15s cubic-bezier(0, 0.55, 0.45, 1) 0.3s;
}
footer > a:nth-child(6)::before {
  animation: gradientHide 0.3s linear,
    gradientShow 0.15s cubic-bezier(0, 0.55, 0.45, 1) 0.3s;
}
.info {
  height: fit-content;
  max-height: 320px;
  width: 50%;
  max-width: calc(100vw - 24px);
  min-width: 500px;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  position: absolute;
  z-index: 30px;
  border-radius: 16px;
  padding: 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 19px;
  line-height: 27px;
  font-weight: 600;
  color: white;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column nowrap;
  overflow-y: auto;
  overflow-x: hidden;
  text-align: center;
  transform: scale(0.5);
  transform-origin: center center;
  transition: all 0.4s cubic-bezier(0.85, 0, 0.15, 1);
  opacity: 0;
  user-select: none;
  pointer-events: none;
}
@media screen and (max-width: 650px) {
  .info {
    width: calc(100vw - 36px);
    min-width: 200px;
    max-width: calc(100vw - 36px);
  }
}
.info > h1 {
  font-weight: 900;
  font-size: 32px;
  line-height: 36px;
  margin-bottom: 2px;
  text-align: center;
}
.info > h2 {
  font-weight: 900;
  font-size: 15px;
  line-height: 16px;
  margin-bottom: 12px;
  color: #5271ee;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.info-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: none;
  user-select: none;
}
