body {
    font-family: Arial, sans-serif;
    background-color: #d3d3d3; /* Light grey background */
}

.popup {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
}

.popup-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
    max-width: 600px; /* Maximum width of the popup */
    max-height: 80%; /* Maximum height of the popup */
    overflow-y: auto; /* Enable vertical scrolling if content exceeds height */
}


.popup-image {
    float: left; /* Float the image to the left */
    margin-right: 10px; /* Add space between the image and text */
    width: 30%; /* Set a fixed width for the image */
    height: auto; /* Maintain aspect ratio */
}

h2, p {
    color: orange; /* Set text color to orange */
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
