#menubutton1,.menu_button{
color: red;
z-index: 200;
}

.popup {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    display: none; /* Hidden by default, shown via JavaScript */
    z-index: 100;
    cursor: pointer;
}

.popup[hidden] {
    xdisplay: none;
}

.popup-content {
    position: relative;
    width: 360px;
    height: 485px;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    cursor: default; /* Prevents click cursor inside the content area */
}

.popup-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.close-button {
    font-family: arial,helvetica,sans serif;
    position: absolute;
    top: 40px;
    right: 15px;
    background-color: #333;
    color: white;
    border: none;
    font-size: 30px;
    padding: 5px 10px;
    cursor: pointer;
    z-index: 2001; /* Above everything else */
}

.close-button:hover {
    background-color: #555;
}

.close-button:focus {
    xoutline: 3px solid #005fcc;
}

.link-button {
 font-family: arial,helvetica,sans serif;
    position: absolute;
   top: 31px;
    left: 63px;
    font-size: 12px;
    transform: translateX(-50%);
    padding: 4px 14px;
    background-color: rgb(130,20,39);
    font-famly: arial,helvetica,sans serif;
    font-weight: 900;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    z-index: 1002;
}

.link-button:hover {
    xbackground-color: #0056b3;
    background-color: rgba(255,255,255,.2);

}

.link-button:focus {
    xoutline: 3px solid #005fcc;
}

@media (max-width: 600px) {
    .popup-content {
        width: 90%;
        max-width: 400px;
    }


}
