@import "./nav.css";
@import "./home.css";
@import "./aboutus.css";
@import "./gallery.css";
@import "./aqua.css";
@import "./footer.css";
@import "./admin.css";
@import "./loading.css";

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  width: 100vw;
  min-height: 500px;
  max-height: fit-content;
  overflow-x: hidden;
  transition: 0.5s;
  position: relative;
  opacity: 0;
}

body #content {
  min-height: 1000px;
  max-height: fit-content;
}

a {
  cursor: pointer;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

body h2.popup_message {
  position: absolute !important;
  top: 75px;
  left: 50%;
  padding: 5px 25px;
  text-align: center;
  background: #11c4fe;
  color: white;
  border-radius: 7px;
  font-weight: 400;
  font-size: 24px;
  transition: 0.3s;
  overflow: hidden;
}

.popup_message.inactive {
  top: -50px;
  opacity: 0;
}

.modal {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 6;
}

.modal .modal_box {
  width: 500px;
  height: 225px;
  background: #11c4fe;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 25px;
  color: white;
}

.modal_box .add_name {
  width: 85%;
  margin-bottom: 25px;
}

.modal .modal_box span {
  font-size: 24px;
  display: block;
  margin-bottom: 10px;
}

.modal_box input {
  width: 100%;
  height: 50px;
  border-radius: 5px;
  outline: none;
  font-size: 18px;
  font-weight: 300;
  padding: 5px 10px;
  border: 1px solid transparent;
}

.modal_box input.inactive {
  border: 1px solid #fe4b11;
}

.modal_box .confirm {
  width: 85%;
  display: flex;
  justify-content: space-between;
}

.modal_box button {
  width: 175px;
  height: 40px;
  color: #11c4fe;
  background: white;
  border: none;
  border-radius: 5px;
  font-size: 20px;
  transition: 0.3s;
  border: 2px solid white;
  font-weight: 500;
  cursor: pointer;
}

.modal_box button:hover {
  background: #11c4fe;
  color: white;
}
