@import url("https://fonts.googleapis.com/css2?family=Hubballi&display=swap");

.popup1 {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.popup1 {
  background-color: #edeef6;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.modal-container-popup1 {
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.button-popup1 {
  background-color: #47a386;
  border: 0;
  border-radius: 5px;
  color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  padding: 10px 25px;
}

h1,
.button-popup1,
p {
  margin-top: 15px;
}

.modal_popup1 {
  text-align: center;
  border-radius: 5px;
  padding: 30px 50px;
  background-color: #fff;
  width: 600px;
  max-width: 85%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.modal_popup1 h1 {
  margin: 0;
}

.modal_popup1 p {
  font-size: 16px;
}

.show_popup1 {
/*   or display block */
  opacity: 1;
  pointer-events: auto;
  z-index: 999;
}

.button-popup1:hover {
  background-color: #337560;
}