@charset "utf-8";
/* CSS Document */
body{
	text-align: center;
	margin: 0;
}

h2 {
	color: black;
	font-size: 30px;
}

p {
	font-family:"Trebuchet MS";
	font-size: 20px;
}

.modal {
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.8);
	
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
}

.contenido {
	margin: auto;
	widht: 40%;
	height: 40%;
	background: white;
	border-radius: 10px;
	padding: 5%;
	
}

#cerrar {
	display: none;
}

#cerrar + label  {
	position: fixed;
	color: white;
	font-size: 20px;
	z-index: 100;
	background: darkred;
	height: 105px;
	width: 100%;
	line-height: 105px;
	cursor: pointer;
	font-family: "Trebuchet MS";
	top: 0;
	left: 0;
	text-align: center;
}

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