@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
*{
	margin:0;
	padding:0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-family:"Roboto";
}
body{
    background-color: whitesmoke;
}
header{
    height: 50px;
    width: 100%;
    background-color: #cd2856;
    position: fixed;
    
}
header .panel{
    text-align: right;
    color: white;
    margin-right: 5px;
}
header .panel a{
    cursor: pointer;
    text-decoration: none;   
}
header .panel img{
    width: 40px;
    margin: 5px;
}
.espacio{
    height: 50px;
    width: 100%;
}
.container{
    max-width:1000px;
    margin:auto;
    text-align: center;
    background: #fff;
    
}
.container2{
    max-width:1000px;
    margin:auto;
    text-align: center;
    
}
.documento{
    width: 220px;
    height: 350px;
    background:#fff;
    border: #cd2856 1px solid;
    border-radius: 5px;
    margin:5px auto;
}
#paginas ul{
    margin: 10px 0;
    padding: 0;
}
#paginas li{
    display: inline-block;
    margin: 0;
    padding: 5px;
}

#paginas li a{
    background: rgb(228, 228, 228);
    border-radius: 3px;
    color: rgb(50, 50, 50);
    padding: 10px 15px;
    text-decoration: none;
}

.actual{
    background: rgb(20, 69, 124) !important;
    color: rgb(255, 255, 255) !important;
}
.pies{
    width: 100%;
    background-color:#cd2856;
    text-align: center;
    color: white;
}
#main-container{
    width: 100%;
    min-height: 800px;
}
#main-container a{
    text-decoration: none;
    color: white;
}
#main-container .logo{
    width: 100%;
    
}
.filtros{
    height: 120px;
    width: 100%;
    background-color: #C8C9C8;
    color: black;
    text-align: center;
}
.filtros .contenido{
    width: 30%;
    
    margin: auto;
    float: left;
    margin: auto;
    padding: 10px;
    text-align: center;
}
.filtros .contenido li{
    text-decoration: none;
    margin: 25px;
    list-style: none;

}


.filtros .contenido li a{
    text-decoration: none;
    border-radius: 5px;
    color: white;
    padding: 8px 30px;
    background:black;
}

.filtros .contenido li a:hover{
    background:#cd2856;
    
}

.tarjeta{
    display: inline-block;
    width: 230px;
    height: 360px;
    margin:5px auto;
    border: #000 1px solid;
    border-radius: 5px;
    box-shadow:  2px 2px 10px #000;
    
}

.contenido-text{
    width: 50%;
    margin: auto;
    text-align: center;
    background: rgba(255,255,255,0.7);
    border: #cd2856 1px solid;
    border-radius: 5px;
}
.contenido-text p{
    text-align: justify;
    padding: 20px;
    font-size: 18px;
}

.contenido-text a{
    text-decoration: none;
    border-radius: 5px;
    color: white;
    padding: 8px 30px;
    background:black;
}
.contenido-text a:hover{
    background:#cd2856;
}



.letras{
    width: 100%;
    margin: auto;
    text-align:center;
    clear: both;
}
.letras h3{
    text-align: center;
}


.letras a{
    text-decoration: none;
    border-radius: 3px;
    color: white;
    padding: 5px 5px;
    background:black;
}

.letras a:hover{
    background:#cd2856;
    
}
.filtros a{
    text-decoration: none;
    border-radius: 3px;
    color: white;
    padding: 5px 5px;
    background:black;
}

.filtros a:hover{
    background:#cd2856;
    
}
@media screen and (max-width:1200px) {
    .filtros{
    height: 300px;
}
	.filtros .contenido{
   width: 100%;
    clear: both;
}
 
    .contenido-text{
        width: 96%;
    }
}