body {
    background-color:rgb(240, 192, 208);
}

h1{
    text-align: center;
    font-family: 'Franklin Gothic Medium';
    font-variant: initial;
    font-size: 220%;
}

h2{
    text-align:center;
    color: rgb(87, 10, 97);
    font-family: 'Franklin Gothic Medium';
    font-style: italic;
    font-size: 180%;
   }
   
h3 {
    text-align:center;
    color: rgb(87, 10, 97);
    font-family: 'Franklin Gothic Medium';
    font-style: italic;
    font-size: 160%;
}

hr{ 
    height: 10px;
    width: 100%;
    background-color:  rgb(255, 113, 175);
   }

p {
    text-align: justify; 
    font-family: 'Franklin Gothic Medium';
    font-style: italic;
    color:  rgb(127, 9, 143);
    font-size: 130%;
   }

li{
    text-align: justify; 
    font-family: 'Franklin Gothic Medium';
    font-style: italic;
    color:  rgb(127, 9, 143);
    font-size: 130%;
    padding-left: 3%;
} 

* {
    box-sizing: border-box;
}

/*Estilo de body*/
body {
    font-family: 'Franklin Gothic Medium';
    margin: 0;
}

/*Estilo de Header*/

div.logo {
    width: 90;
    height: 48;
    float: left;
}

/*Estilo para div logo */
.cajalogo {
    background: rgb(255,163, 203);
}
.container-cover {
    padding: 14%;
    text-align: center;
    font-family:'Franklin Gothic Medium';
    font-style: italic;
    color: rgb(49, 10, 110);
    width: 100%;
    background-image: url(../Imagenes/biblioteca.png);
    height: 400px;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
    background: rgb(255, 113, 175);
}
.flex-wrap > div {
    width: 33% ;
    margin: 0px ;
    text-align: center;
    line-height: 40px ;
    font-size: 25px ;

}

.flex-wrap a {
    color: rgb(255, 255, 255);
    font-style: italic;
}

.flex-wrap a:hover {
    color: rgb(255,163, 203);
    cursor: pointer;
}
.individualdiv:hover {
    background-color: rgb(231, 69, 139);
}

* {
    margin: 0px;
    padding: 0px;
  }
  
  #sidebar {
    position: relative;
    text-align: center;
    width: 200px;
    height: 100%;
    background:  rgb(255,163, 203);
    left: -200px;
    transition: all 500ms linear;

  }
  
  #sidebar.active {
    left: 0px;
  }
  
  #sidebar a {
    color: rgb(255, 236, 249);
    padding: 5px;
    border-bottom: 1px solid  rgb(255,163, 203);
    text-align: center;
    font-size: 120%;
  }

#sidebar a:hover {
    color: rgb(75, 0, 82);
    padding-bottom: 5px;
    text-align: center;
}

  
#sidebar .toggle-btn {
    position: absolute;
    left: 210px;
    top: 20px;
    cursor: pointer;
  }
  
#sidebar .toggle-btn span {
    display: block;
    width: 40px;
    text-align: center;
    font-size: 30px;
    border: 3px solid rgb(48, 0, 16);;
  }


/* Columna principal */
.main {
    position: absolute;
    height: 100%;
    width: 100%;
    border: none;
    padding: 0px;
} 

.imagen {
    text-align: center;
}

/* Pie de página */
.footer {
    position: relative;
    padding: 20px;
    text-align: center;
    color: rgb(77, 1, 27);
    background: rgb(255, 113, 175);
}