body {
  font-family: "Poppins", sans-serif;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  z-index: 1000;
  margin-top: 1.4rem;
  max-width: 100%;
  max-height: 98%;
}

button {
  width: 100%;
  height: 60px;
  padding: 10px 20px;
  margin-top: 15px;
  border-radius: 30px;
  font-size: 1.8rem;
  font-weight: bold;
  background-color: #eb6a00;
  color: #fff;
  border: none;
  cursor: pointer;
}

#button-Container {
  display: flex; /* Mengaktifkan flexbox */
  justify-content: center; /* Mengatur posisi horizontal ke tengah */
  gap: 10px; /* Jarak antara elemen */
}

#orderButton,
#closePopupBtn {
  width: 35%;
  padding: 8px 16px;
  font-size: 1rem;
  border-radius: 5px;
  background-color: #eb6a00;
  color: #fff;
  border: none;
  cursor: pointer;
}

.popup h2 {
  color: black;
  font-size: 1.4rem;
}

.popup .isi-popup p {
  color: black;
  font-size: 1rem;
}

.popup .isi-popup p span {
  font-weight: bold;
  color: black;
  font-size: 1.5rem;
}

video {
  max-width: 65%;
  position: relative;
  top: 25%;
  bottom: 50%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/*Laptop dan Tablet*/
@media (max-width: 1366px) {
  html {
    font-size: 80%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  html {
    font-size: 55%; /* Mengubah ukuran font root menjadi 62.5% (10px) untuk perhitungan rem */
  }
  .popup {
    max-width: 100%;
  }
  #orderButton,
  #closePopupBtn {
    width: 150px;
    height: 45px;
    border-radius: 6px;
  }
}
