/* 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 {
  cursor: url("cursor.png"), auto;
  background-color: white;
  color: black;
  font-family: Verdana;
  overflow-x: hidden;
  font-family: 'Comic Sans';
}

body {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: pink;
}

.welcome,
.block2 {
  color: white;
  font-weight: 800;
  font-style: italic;
  font-size: 2em;
}

.subtitle {
  font-size: 1.5em;
  color: white;
  font-weight: 300;
}

.block2 img {
  animation: Flip 2s infinite;
}

.container {
  border: 5px dotted white;
  padding: 16px;
  margin-bottom: 1em;
}

.titlespheres {
  width: 32px;
  height: 32px;
}

h1 {
  animation: colorRotate 1s infinite;
}

.smoothsliding {
  position: fixed;
  bottom: 0px;
  right: 0px;
  width: 4em;
  animation: Sliding 4s infinite;
}

@keyframes Sliding {
  from {
    transform: scaleX(1);
    right: 0px;
  }

  50% {
    transform: scaleX(-1);
    right: calc(100vw - 6em);
  }

  100% {
    transform: scaleX(1);
    right: 0px;
  }
}

.jetger {
  position: fixed;
  width: 4em;
  z-index: 100;
  animation: Jetger 50s infinite;
}

@keyframes Jetger {
  from {
    top: 76vh;
    left: 80vw;
  }

  4% {
    top: 62vh;
    left: 95vw;
  }

  8% {
    top: 89vh;
    left: 4vw;
  }

  12% {
    top: 95vh;
    left: 27vw;
  }

  16% {
    top: 27vh;
    left: 83vw;
  }

  20% {
    top: 51vh;
    left: 66vw;
  }

  24% {
    top: 71vh;
    left: 58vw;
  }

  28% {
    top: 61vh;
    left: 59vw;
  }

  32% {
    top: 79vh;
    left: 55vw;
  }

  36% {
    top: 91vh;
    left: 48vw;
  }

  40% {
    top: 70vh;
    left: 59vw;
  }

  44% {
    top: 74vh;
    left: 30vw;
  }

  48% {
    top: 79vh;
    left: 81vw;
  }

  52% {
    top: 90vh;
    left: 21vw;
  }

  56% {
    top: 32vh;
    left: 51vw;
  }

  60% {
    top: 46vh;
    left: 91vw;
  }

  64% {
    top: 48vh;
    left: 31vw;
  }

  68% {
    top: 7vh;
    left: 62vw;
  }

  72% {
    top: 32vh;
    left: 6vw;
  }

  76% {
    top: 53vh;
    left: 25vw;
  }

  80% {
    top: 71vh;
    left: 58vw;
  }

  84% {
    top: 21vh;
    left: 90vw;
  }

  88% {
    top: 3vh;
    left: 20vw;
  }

  92% {
    top: 25vh;
    left: 9vw;
  }

  96% {
    top: 49vh;
    left: 78vw;
  }

  100% {
    top: 76vh;
    left: 80vw;
  }
}

@keyframes colorRotate {
  from {
    color: #6666ff;
  }

  10% {
    color: #0099ff;
  }

  50% {
    color: #00ff00;
  }

  75% {
    color: #ff3399;
  }

  100% {
    color: #6666ff;
  }
}

@keyframes Flip {
  from {
    transform: scaleX(1);
  }

  50% {
    transform: scaleX(-1);
  }

  100% {
    transform: scaleX(1);
  }
}

.pengers {
  display: grid;
  grid-template-columns: repeat(4, auto);
}

.pengers>img {
  width: 256px;
}

.temple {
  border: 3px dashed #73cedd;
  margin-bottom: 32px;
  padding: 64px;
  background-color: #1c1c19;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mpengers {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.mpenger {
  width: 64px;
}

.mpenger>a>img {
  width: 64px;
  image-rendering: pixelated;
}

.gallery {
    display: grid;
    grid-auto-flow: dense;
    gap: 5px;
    padding: 15px;
    margin-inline: 2em;
    border-radius: 15px;
    border: dotted 5px #ffffffaa;

    background: rgb(212,0,158);
    background: linear-gradient(138deg, rgba(212,0,158,0.16555533439490444) 0%, rgba(238,39,142,0.17510947452229297) 68%, rgba(162,2,244,0.23880374203821653) 100%);

    box-shadow: 5px 5px 5px #ff555577;
}

.gallery>div>img {
    border: dashed #ffffffaa 3px;
    background-color: #44777722;
    box-shadow: 3px 3px 3px #ff555577;
    padding: 5px;
    object-fit: contain;
    max-width: 30vw;
    max-height: 30vh;
}

.gallery>div>img:hover {
    background-color: #44777733;
    box-shadow: 9px 9px 9px #ff555577;
}
