.container-popup{
    margin: 2rem auto;
    border-radius: 15px;
    box-shadow: 5px 5px 20px rgba(69, 206, 110, 0.5);
}
.popup-img{
    width: 800px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: scroll;
    padding: 2rem;
}
.popup-img a img{
    width: 100%;
}
#btn_close_popup{
    border-style: none;
    padding: 1rem;
    font-size: 3rem;
    position: fixed;
    top: 10px;
    right: 100px;
    background-color: transparent;
    color: #28a739;
    transition: all .3s;
}
#btn_close_popup:hover{
    color: orange;
    cursor: pointer;
}
.popup-img>h1{
    color: #28a739;
}

@media(min-width:1500px){
    .container-popup{
        margin: 5rem auto;
    }
    .popup-img{
        width: 1200px;
        height: 650px;
    }
    #btn_close_popup{
        font-size: 4rem;
    }
}
@media(max-width:1500px){
    .container-popup{
        width: 70%;
        top: 10%;
    }
    .popup-img{
        width: 100%;
    }
    .popup-img a img{
        width: 100%;
    }
}
@media(max-width:960px){
    #btn_close_popup{
        color: #fff;
    }
}
@media(max-width:720px){

    .container-popup{
        width: 90%;
        margin: 6rem auto;
    }
    .popup-img{
        padding: 2rem 0;
    }
    .popup-img a img{
        width: 100%;
    }
    img{
        width: 100%;
    }
    #btn_close_popup{
        top: 0;
        right: 0;
    }
}