@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: hidden;
    opacity: 0;
}
.overlay:target {
    visibility: visible;
    opacity: 1;
    z-index: 1;
}
#popupBody, h2{
    width: 46%;
    padding: 2%;
    border-radius: 15px;
    box-shadow: 0 0 5px #CCC;
    background: #00dcff;
    position: relative;
    transition: all 5s ease-in-out;
    margin: 20% auto;  
    z-index: -2;  
    font-size: 20px;
    color: black;


}
#cerrar{
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #F00;
}


@media (max-width: 768px) {
#popupBody, h2{
		width: 90%;
		margin-left: 5%;
	}