@charset "utf-8";

.anuncio{
	position: fixed;
	display: fixed;
	background: rgba(0,0,0,0.5);
	animation: modal 15s;
	visibility:hidden;
	opacity: 0;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1050;
	align-content: center;
	text-align: center;
}

.contenido{
	margin: auto;
	border-radius: 10px;
}

#cerrar{
	
	display: none;
}

#cerrar + label{
	position: fixed;
	color: white;
	font-size: 25px;
	z-index: 50;
	background: darkred;
	height: 40px;
	width: 40px;
	line-height: 40px;
	border-radius: 50%;
	right: 2px;
	cursor: pointer;

	animation:modal 10s;
	visibility:hidden;
		opacity: 0;
}

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

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