@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.pulse-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.pulse-container .center-circle {
  width: 65px;
  height: 65px;
  background-color: #0082c0;
  border-radius: 50%;
  z-index: 2;
}

.pulse-container .pulse-circle {
  position: absolute;
  width: 65px;
  height: 65px;
  background-color: #333948;
  border-radius: 50%;
  animation: pulse 2s infinite ease-in-out;
  z-index: 1;
}
