@charset "utf-8";
.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: visible;
    opacity: 1;
    z-index: 999;
}
#popup:target {
    visibility: hidden;
    opacity: 0;
}
.popupContent img{
     width: 80%;
    height: 36vw;
    left: 10%;
    position: relative;   
}
#popupBody{
    width: 40%;
    height: 40vw;
    padding: 2%;
    border-radius: 15px;
    box-shadow: 0 0 5px #CCC;
    background: #FFF;
    position: relative;
    transition: all 0s ease-in-out;
    margin: 3% auto;   
}
#cerrar{
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #F00;
    cursor: pointer;
}

@media (max-width: 740px) {

.popupContent img{
    width: 87%;
    height: 80vw;
    left: 7%;
    top: 9vw;  
}
#popupBody{
    width: 70%;
    height: 100vw;
    margin: 20% auto; 
}
#cerrar{
    top: 5px;
    right: 30px;
}

}
