
/* --- Membership Popup Style --- */

html,
body,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto", sans-serif;
}

/* --- Membership Popup Style --- */
#membership-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  font-family: sans-serif;
}

.popup-content {
  background-color: #fff;
  padding: 25px 35px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  width: 90%;
  max-width: 400px;
}

.popup-content h3 {
  margin-top: 0;
  color: #333;
}

.popup-content p {
  line-height: 1.6;
  color: #555;
}

.popup-button {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 15px;
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.popup-button:hover {
  background-color: #0056b3;
}

.popup-button-close {
  margin-left: 10px;
  padding: 10px 20px;
  background: none;
  border: 1px solid #ccc;
  color: #555;
  border-radius: 5px;
  cursor: pointer;
}

.popup-button-close:hover {
  background-color: #f0f0f0;
}