.modal {
  position: fixed;
  top: 0;
  left: 0;

  height: 100vh;
  width: 100%;

  display: none;
  place-items: center;

  background-color: #fff5;
  backdrop-filter: blur(5px);
  z-index: 1000;
}

.modal.active {
  display: grid;
}

.modal__content {
  width: 80%;
  max-width: 500px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;

  padding: 2rem;

  background-color: white;
  text-align: center;
  border-radius: 1rem;
  box-shadow: var(--primary-shadow);
}

.modal__title {
  font-family: "Mulish", sans-serif;
  font-weight: 800;
}
