body {
  font-family: "Pacifico", cursive;
  background-color: #2B2D42;
}

.effect-text {
  font-size: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 0;
}

.effect-text:before {
  content: "degendepot.com";
  position: absolute;
  color: #edf2f4;
  z-index: 1;
}

.effect-text:after {
  content: "coming soon...";
  position: absolute;
  color: #edf2f4;
  font-size: 20px;
  /* Smaller text size */
  top: 75px;
  /* Position below the main text */
  left: 50%;
  transform: translateX(-50%);
  /* Center the text */
  z-index: 1;
}

.tiny-heart {
  position: absolute;
  opacity: 0;
  background-color: #D90429;
  box-shadow: 0px 0px 50px 4px rgba(239, 35, 60, 0.7);
  animation: animated-heart infinite ease-in;
  z-index: 0;
}
.tiny-heart:before, .tiny-heart:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #D90429;
}
.tiny-heart:before {
  transform: translateX(-50%);
}
.tiny-heart:after {
  transform: translateY(-50%);
}

@keyframes animated-heart {
  0% {
    opacity: 0;
    transform: translate(0, 0) rotate(45deg);
  }
  50% {
    opacity: 1;
    transform: translate(0, -40%) rotate(45deg);
  }
  100% {
    opacity: 0;
    transform: translate(0, -1000%) rotate(45deg);
  }
}