/* Popup container */
.popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

/* Popup content */
.popup-content {
    background-color: white;
    padding: 50px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
}

/* Close button */
.close-btn {
    color: red;
    float: right;
    font-size: 24px;
    cursor: pointer;
}

.popup-btn {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: blue;
    color: white;
    border: none;
    cursor: pointer;
}

.popup-btn:hover {
    background-color:darkblue;
}


.popup img{
    height:50px;
    width:400px;
    
}























