/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #000000;
  color: white;
  font-family: Verdana;
  margin: 0;
}

#entrance {
  position: fixed;
  background-image: url("assets/Starfield.gif");
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  width: 100%;
  height: 100%;
  font-style: italic;
}

.enter-text {
  font-size: 2rem;
}

.enter-text span {
  position: relative;
  display: inline-block;
  animation: wave-anim 2s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.1s);
}

@keyframes wave-anim {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hidden {
  display: none;
}

.wordart {
  transform: scaleY(1.5) skewY(-8deg) rotateZ(-3deg) translateZ(0);
  top: 0.5em;
  left: 40%;
  font-size: 5em;
  position: absolute;
}

.wordart p::before {
  position: absolute;
  content: attr(data-content);
  z-index: -1;
  text-shadow: 1px 0 0 #813300,0 1px 0 #c14d00,2px 1px .35px #813300,1px 2px .35px #c14d00,3px 2px .35px #813300,2px 3px .35px #c14d00,4px 3px .35px #813300,3px 4px .35px #c14d00,5px 4px .35px #813300,4px 5px .35px #c14d00,6px 5px .35px #813300,5px 6px .35px #c14d00,7px 6px .35px #813300,6px 7px .35px #c14d00;
}

.wordart p {
  font-family: "Impact", "Comic Sans", cursive;
  color: transparent;
  background: linear-gradient(to bottom left,#fee601,#fee601 15%,#fe4201);
  background-clip: border-box;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

#man1 {
  position: absolute;
  transform: scale(0.5) skewY(-8deg) rotateZ(-3deg) translateZ(0);
  left: 30%;
}

#man2 {
  position: absolute;
  transform: scale(0.5) skewY(-8deg) rotateZ(-3deg) translateZ(0);
  left: 62%;
  top: -12%;
}

main {
  display: block;
}

#blinka {
  position: relative;
  transition: 0.3s;
  transition-timing-function: ease-in-out;
}

#blinka:hover {
  transform: scale(1.5) translate(0, 5em);
}