.popup-popup {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #0008;
}

.popup-content {
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: white;
  display: flex;
  flex-direction: column;
  animation-name: popup-fadein;
  animation-duration: 500ms;
  animation-timing-function: ease-out;
}

.popup-close {
  color: #fff;
  padding: .5rem 1rem;
  margin-top: 1rem;
  cursor: pointer;
  border: none;
  border-radius: 2rem;
  background: #104d89;
  font-size: larger;
  align-self: center;
}

@keyframes popup-fadein {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
