body {
	font-family: Fredoka;
    font-size: 14px;
    color: #08031a;
}

p { text-indent: 2em; }


h1 {
	font-family: HeyComic;
    color: #a5a3ff;
  text-shadow: -1px 0 #4126a7, 0 1px #4126a7, 1px 0 #4126a7, 0 -1px #4126a7;

}

@font-face {
                font-family: HeyComic;
                src: url('https://heysye.neocities.org/Fonts/HeyComic.ttf');
            }
 
            @font-face {
                font-family: Fredoka;
                src: url('https://heysye.neocities.org/Fonts/Fredoka_SemiCondensed-Regular.ttf');
            }


            @font-face {
                font-family: Fredoka;
                src: url('https://heysye.neocities.org/Fonts/Fredoka_SemiCondensed-SemiBold.ttf');
                font-weight: bold;
            }
  
/* Bouncing Animation */
  
            * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  background-color: #222327;
}
.bounce-text {
  color: #28ff55;
  position: absolute;
  transform: translate(-50%, 50%);
  left: 50%;
  top: 50%;
  line-height: 0;
  display: flex;
  gap: 5px;
  font-size: 3rem;
  font-weight: bold;
  justify-content: center;
}
.bounce-text span {
  display: inline-block;
  animation: bounce 0.6s infinite ease-in-out;
}
.bounce-text span:nth-child(1) {
  animation-delay: 0s;
}
.bounce-text span:nth-child(2) {
  animation-delay: 0.1s;
}
.bounce-text span:nth-child(3) {
  animation-delay: 0.2s;
}
.bounce-text span:nth-child(4) {
  animation-delay: 0.3s;
}
.bounce-text span:nth-child(5) {
  animation-delay: 0.4s;
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}