.gradient-background {
  background: rgb(255, 208, 229);
  background: linear-gradient(180deg, rgba(255, 208, 229, 1) 0%, rgba(255, 232, 242, 1) 36%, rgba(255, 255, 255, 1) 100%);
}

.jumping-text {
  display: inline-block;
  font-size: calc(1.325rem + .9vw);
  font-weight: 700 !important;
  margin-top: 0.69rem;
  color: #dc3545;
  animation: jump 0.6s infinite alternate ease-in-out;
  cursor: pointer;
}

@keyframes jump {
  0% { transform: translateY(0); }
  100% { transform: translateY(-5px); }
}

#replayButton i {
  transition: transform 0.3s ease-in-out, color 0.3s;
}

#replayButton:hover i{
  transform: rotate(360deg);
  cursor: pointer;
  color: #dc3545;
}

