body {
background-color:black;
  color: black;
  font-family: "Lora";
  font-weight: 400;
  font-size: 1.5rem;
margin: 0;
    padding: 0;
    z-index: 1;
}
h1 {
  font-size: 2.5rem; /* Sets paragraph text to exactly 18 pixels */
}
p2 {
  font-size: 1rem; /* Sets paragraph text to exactly 18 pixels */
}
h2 {
  font-size: 4rem; /* Sets paragraph text to exactly 18 pixels */
}
p1 {
  font-size: 2rem; /* Sets paragraph text to exactly 18 pixels */
}
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgba(0,0,0,0.4); /* Black background with opacity */
    overflow: auto; /* Enable scroll if needed */
}

/* Modal Content/Box */
.modal-content {
    background-color: black;
    margin: 2% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 100%; /* Could be more or less, depending on screen size */
    height: 100%;
    max-height: 30rem;
    max-width: 80rem; /* Max width for larger screens */
    border-radius: 5px;
}

/* The Close Button */
.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Optional: Mobile optimization for the modal content */
@media screen and (max-width: 600px) {
    .modal-content {
        width: 90%;
        height: 70rem;
        max-height: 120rem;
        margin: 5% auto; /* Adjust margin for better mobile view */
    }
}