@keyframes white-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow: 0 0 0 35px rgba(255, 255, 255, 0);
  }
}

@keyframes green-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(52, 175, 35, 0.2);
  }
  100% {
    box-shadow: 0 0 0 35px rgba(52, 175, 35, 0);
  }
}

.hamburger {
  animation: white-pulse 1s infinite;
}
