@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; /* Este valor se cambió de hidden a visible */
    opacity: 1; /* Este valor se cambió de 0 a 1 */
}
#popup:target{
    visibility: hidden; /* Se regresa a hidden para ocultar */
    opacity: 0; /* Se regresa a o para hacerlo "invisible" */
}
#popupBody{
    width: 38%;
    padding: 2%;
    border-radius: 15px;
    box-shadow: 0 0 5px #CCC;
    background: #FFF;
    position: relative;
    transition: all 5s ease-in-out;
    margin: 20% auto;    
}
#cerrar{
    position: absolute;
    width: 2px;
    height: 2px;
    right: -5px;
    top: -15px;
    background:  black;
    color: white;
    border-radius: 50%;
    line-height: 10px;

    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 18px;
    padding-left: 10px;
   
    /*width: 2px;
    height: 2px;
    right: -10px;
    top: -10px;
    padding: 10px;
    background:  black;
    color: white;
    border-radius: 50%;
    line-height: 10px;*/
}
.btn-popup {
    border-radius: 20px;
    background-color: black;
    padding: 10px;
}
.btn-popup a{
    color: white;
}
.popupContent {
    font-size: 24px;
}
.popupContent img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 20px;
}
.popupContent h2{
    font-size: 20px;
    font-weight: bold;
}
.popupContent h3{
    font-size: 24px;
    font-weight: bold;
}
@media screen and (max-width:800px) {
    #popupBody{
        width: 90%; 
    }
    .popupContent {
        font-size: 10px;
    }
    .popupContent h2{
        font-size: 15px;
    }
}
