* {
    font-family: Poppins, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700
}

@keyframes pulse-scale {
  0%,100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.animate-pulse-scale {
  animation: pulse-scale 2.2s ease-in-out infinite;
}