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

.modal {
	width: 100%;
	height: 80vh;
	background: rgba(0,0,0,0.8);
	
	position: absolute;
	top: 0;
	left: 0;
	
	display: flex;
	
	animation: modal 2s 3s forwards;
	visibility: hidden;
	opacity: 0;

	z-index: 20;
}

.contenido {
	margin: auto;
	
	/* background: white; */
	border-radius: 10px;
}
.modal h2 {
	margin: 0;
	padding-top: .5em;
	font-size: 1.2em;
	text-align: center;
	font-family: 'Raleway', sans-serif;

	color: #093c8e;
	padding-bottom: .6em;
}

.modal .contenido img {
	width: 400px;
	height: auto;
	padding-top: 10%;
}

#cerrar {
	display: none;
}

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

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

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



/* Media Querys MEDIANO */
@media screen and (min-width: 768px) {
	.modal .contenido img {
		width: 800px;
		height: auto;
	}

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

/* Media Querys COMPLETO */
@media (min-width: 1120px) {
}