.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  animation: blur 0.07s linear forwards;
}

@keyframes blur {
  0% {
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
  }
  100% {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
  }
}
