/* pulse animation */
.blob {
  background: rgb(230, 192, 123);
  border-radius: 50%;
  margin: 10px;
  height: 10px;
  width: 10px;
  position: absolute;
  top: -10px;
  right: -10px;
}

.blob {
  background: rgb(230, 192, 123);
  border-radius: 50%;
  margin: 10px;
  height: 10px;
  width: 10px;
  border: 3px solid white;

  box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
  transform: scale(1);
  animation: pulse 4s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }

  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
