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

	
	

	top: 0;
	left: 0;

	display: flex;


	animation: modal 2s 3s forwards;
	visibility: hidden;
	opacity: 0;
	position: fixed;
}



.modal2{
	z-index: 1000;
	display: flex;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.8);
	position: absolute;
	

	top: 0;
	left: 0;

	display: flex;


	animation: modal 2s 5s forwards;
	visibility: hidden;
	opacity: 0;
	position: fixed;
}

.contenido{
	margin: auto;
	max-width: 90%;
	height: auto;
	background: #fdfee0;
	
	border-radius: 10px;
	border: 2px solid blue;
	padding: 10px;
	
}
.contenido2{
	margin: auto;
	max-width: 90%;
	height: auto;
	background: #fdfee0;
		
	border-radius: 10px;
	border: 2px solid orange;
	top: 30%;
	justify-content: justify;
	padding: 10px;
}

.contenido h1, .contenido2 h1{

 	font-size: 20px;
    font-weight: 100;
    /*margin-left: 10px;*/

    text-align: center;
    color: #6a6a6a;

    /*font-family: 'Roboto', sans-serif;*/
    padding-top: 10px;



/*position: absolute;*/
			text-align: left;
			top: 85%;
			color: white;
			text-shadow: 1px 1px #000000;
			font-size: 25px;
			/*margin-left: 5%;*/
			background: #f39507;
			padding: 10px;
			letter-spacing: 0.2em;
			border-radius: 10px;
			/*width: 450px;*/
			text-align: center;










}


.contenido2 h2{
    font-weight: 100;
    text-align: left;
    font-size: 20px;
  	color: #333;
  
    text-transform: uppercase;
    margin-top: 15px;
}

.contenido p, .contenido2 p{
	font-size: 16px;
    margin-top: 20px;
    font-weight: 100;
    text-align: justify;
    padding-left: 25px;
    padding-right: 25px;

  
}
.contenido2 ul{
	
    margin-top: 20px;
    font-weight: 100;
    text-align: justify;
    padding-left: 25px;
    padding-right: 25px;
    line-height: 25px;
    
  
}




#cerrar{
	display: none;
}
#cerrar + label{
	position: fixed;
	color: #fff;
	font-size: 25px;
	z-index: 1001;
	background: orange;
	height: 40px;
	width: 40px;
	line-height: 40px;
	right: 10px;
	cursor: pointer;
	text-align: center;


	animation: modal 2s 3s forwards;
	visibility: hidden;
	opacity: 0;
}
#cerrar:checked + label, #cerrar:checked ~ .modal{
	display: none;
}



#cerrar2{
	display: none;
}
#cerrar2 + label{
	position: fixed;
	color: #fff;
	font-size: 25px;
	z-index: 1001;
	background: orange;
	height: 40px;
	width: 40px;
	line-height: 40px;
	right: 10px;
	cursor: pointer;
	text-align: center;


	animation: modal 2s 5s forwards;
	visibility: hidden;
	opacity: 0;
}
#cerrar2:checked + label, #cerrar2:checked ~ .modal2{
	display: none;
}





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



