.overlay { 
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}

.overlay:target{
  visibility: visible;
  opacity: 1;
}

#popupBody{
width: 46%;
padding: 2%;
background: #ffffff;
position: relative;
margin: 20% auto;
transition: all 5s ease-in-out;
color:#000000;
}

#cerrar{
position: absolute;
top: 20px;
right: 30px;
font-size: 30px;
fotn-weight: bold;
text-decoration: none;
color: #000000;
transition: all 200ms;
}







@media (max-width: 767px){
    .overlay { 
  position: fixed;
  top: 20px;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}

.overlay:target{
  visibility: visible;
  opacity: 1;
}
#popupBody{
width: 86%;
padding: 10%;
background: #ffffff;
position: relative;
margin: 20% auto;
transition: all 5s ease-in-out;
color:#000000;
}
#cerrar{
position: absolute;
top: 20px;
right: 30px;
font-size: 30px;
fotn-weight: bold;
text-decoration: none;
color: #000000;
transition: all 200ms;
}

}