
/* Styles for homepage content */

.homepage-content {
    text-align: center;
    padding: 50px;
}

/* Styles for the login popup */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 1000; /* Ensure it's above other content */
}

.popup-image {
    max-width: 100%; /* Ensure image doesn't exceed its container */
    height: 200px; /* Maintain aspect ratio */
    display: block; /* Ensure it behaves as a block element */
    margin: 0 auto 20px; /* Center horizontally with bottom margin */
}

.popup-content {
    background-color: white;
    margin: 5% auto 0;
    padding: 30px 20px 40px 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    position: relative;
    border-radius: 10px;
    text-align: center;
}

.close {
    position: absolute;
    top: -3px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
}

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

@media (max-width: 768px) {
    
    .homepage-content {
        padding: 20px; /* Adjust padding for smaller screens */
    }

    .popup-content {
        width: 90%; /* Adjust width for smaller screens */
        max-width: 300px; /* Adjust max-width for smaller screens */
        margin: 20% auto; /* Adjust margin for centering on smaller screens */
        padding: 30px 20px 40px 20px; /* Adjust padding for smaller screens */
    }

    .close {
        top: 5px; /* Adjust close button position for smaller screens */
        right: 10px; /* Adjust close button position for smaller screens */
        font-size: 24px; /* Adjust close button size for smaller screens */
    }
}
