<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.inicio{
	/*background:#CCC;
	background-size:cover;	
	Esto simula el sitio debajo del modal
	
	
  background-color:rgba(0,0,0,.5);
   opacity:0.5;  Opacidad 60% */

}

.modal{
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,.20);
	display: inherit;
	
}

.ventana{
	width:700px;
	position: absolute;
	top:5%;
	left:50%;
	margin-left:-350px;
}

.ventana img{
	width:100%;
	border:3px solid #fff;
}

.ventana span{
	color:#fff;
	background-color:#000;
	padding:.2em .5em .3em .5em;
	font-family:Arial;
	font-weight:bold;
	border:2px solid #fff;
	border-radius:50%;
	position:absolute;
	top:-5px;
	right:-20px;
	cursor:pointer;
}



body {
	text-align: center;
	font-family: sans-serif;
	margin: 0;
}

.modal {
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.9);
	
	position: absolute;
	top: 0;
	left: 0;
	
	display: flex;
	
	animation: modal 1s 2s forwards;
	visibility: hidden;
	opacity: 0;
z-index: 1000;
}

.contenido {
  
	margin: auto;
	width: auto;
	height: auto;
	/*background: white;*/
	border-radius: 10px;
	/**padding:10px 20px;**/
z-index: 500;
}

#cerrar {
	display: none;
	position:fixed;
}

#cerrar + label {
	position:fixed;
	color: #fff;
	font-size: 25px;
	z-index: 1200;
	background: red;
	height: 35px;
	width: 35px;
	line-height: 40px;
	border-radius: 50%;
	right: 350px;
	top: 250px;
	cursor: pointer;
	
	animation: modal 1s 2s forwards;
	visibility: hidden;
	opacity: 0;
}

#cerrar:checked + label, #cerrar:checked ~ .modal {
    display: none;
}

@keyframes modal {
	100% {
		visibility: visible;
		opacity: 1;
	}
}

.modal-contenido{
  background-color:aqua;
  width:300px;
  padding: 10px 20px;
  margin: 20% auto;
  position: relative;
}
.modal{
  background-color: rgba(0,0,0,.9);
  position:fixed;
  top:0;
  right:0;
  bottom:0;
  left:0;
  opacity:0;

  transition: all 1s;
}
#miModal:target{
  opacity:1;
  pointer-events:auto;
}</pre></body></html>