@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  height: 100vh;
  width: 100%;
#  background: #f7f7f7;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal_trigger {
  font-size: 2rem;
  text-decoration: none;
  color: #fff;
  background: #000;
  padding: 7px;
}
.modal-container {
  position: absolute;
  top: 30px;
  width: 50%;
  background: #fff;
  z-index: 10;
  border-radius: 5px;
  box-shadow: 0 0 25px 5px rgba(0, 0, 0, 0.2);
  padding: 25px;
  transform: scale(0);
  transition: 0.8s cubic-bezier(0.5, -0.31, 0.39, 1.39);
}
.modal-container .modal-close {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #ff0000;
}
.modal-container .modal-title {
  font-size: 2rem;
  text-align: center;
  margin: 0.5em 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.modal-container .modal-body {
  font-size: 16px;
  opacity: 0.9;
  text-align: center;
}
.overlay {
  position: fixed;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.0);
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s ease-in-out;
}

