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

.modal {
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.6);
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	cursor: pointer;
	animation: modal 1s 1ms forwards;
	visibility: hidden;
	opacity: 0;
}

.contenido {
	margin: auto;
	width: 47%;
	height: 63%;
	border-radius: 10px;
}

#cerrar {
	display: none;
}

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

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

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


