.profile-photo .white {
  width: 100%;
  height: 100%;
  background: #eff0efd9;
  margin: auto;
  position: absolute;
  border-radius: 50%;
  display: none;
  animation: 3s blink ease-in infinite;
}

@keyframes blink {
  30% {
    background: #eff0ef79;
  }
  60% {
    background: #eff0ef41;
  }
  90% {
    background: #eff0efd9;
  }
}
