.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{
    text-align:right;

    transition: all .3s;
    font-size:50px;

}
#btn_close_popup:hover{
    color: orange;
    cursor: pointer;
}
.popup-img>h1{
    color: #28a739;
}

.line-popup{
    border:2px solid black;
    
}
.title-popup{
    color:green;
    font-size:36px;
    text-align:center;
    font-weight:800;
}
@media(min-width:1500px){
    .container-popup{
        margin: 5rem auto;
    }
    .popup-img{
        width: 1200px;
        height: 650px;
    }

}
@media(max-width:1500px){
    .container-popup{
        width: 70%;
        
    }
    .popup-img{
        width: 100%;
    }
    .popup-img a img{
        width: 100%;
    }
}

@media(max-width:720px){
    #btn_close_popup{

    }
    
    .container-popup{
        width: 90%;
        margin: 6rem auto;
    }
    .popup-img{
        padding: 20px 15px;
    }
    .popup-img a img{
        width: 100%;
    }
    img{
        width: 100%;
    }

}