@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  font-family: "Poppins";
}

.pulse-button {
  animation: pulse-slow 4s infinite cubic-bezier(0.4, 0, 0.6, 1);
  position: relative;
  z-index: 1;
}
.pulse-button {
  animation: gentle-pulse 3.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  transition: all 0.3s ease;
  transition-property: all;
  transition-duration: 0.3s;
}
@keyframes pulse-slow {
  0%,
  to {
    box-shadow: 0 0 #1451b480;
  }
  50% {
    box-shadow: 0 0 0 12px #1451b400;
  }
}
@keyframes pulse-warning {
  0% {
    background-color: #1451b4;
  }
  50% {
    background-color: #e53e3e;
  }
  to {
    background-color: #1451b4;
  }
}

@keyframes gentle-pulse {
  0% {
    box-shadow: 0 0 #1451b480;
  }
  50% {
    box-shadow: 0 0 0 15px #1451b400;
  }
  to {
    box-shadow: 0 0 #1451b400;
  }
}
