@charset "utf-8";
/* CSS Document */

body
{
	margin: 0;
	color: blue;
}

.modal
{
	width: 100%;
	/*height: 100vh;*/
	height: auto;
	background: rgba(0,0,0,0.8);
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	animation: modal 2s;
	animation-delay: 1s;
	animation-fill-mode: forwards;
	visibility: hidden;
	opacity: 0;
	z-index: 40;
}

.conteni
{
	margin: auto;
	width: 720px;
	/*height: 604px;*/
	height: auto;
	text-align: center;
	background: white;
	border-radius: 10px;
}

#cerrar
{
	display: none;
}

#cerrar + label
{
	position: fixed;
	text-align: center;
	color: #fff;
	font-size: 25px;
	z-index: 50;
	background: darkred;
	height: 40px;
	width: 40px;
	line-height: 40px;
	border-radius: 50%;
	right: 10px;
	cursor: pointer;
	animation: modal 2s 1s forwards;
	visibility: hidden;
	opacity: 0;
}

#cerrar:checked + label, #cerrar:checked ~ .modal
{
	display: none;
}

.paradm{
	margin-left: 20px;
	margin-right: 20px;
	text-align: justify;
}

.titadm{
	text-align: center;
	color: #FF0000;
}

@keyframes modal{
	100%{
		visibility: visible;
		opacity: 1;
	}
}