body {
    background-color:rgb(255, 255, 255);
}

.col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}
h1{
    text-align: center;
}

h2{
    text-align:center;
    color: rgb(228, 92, 68);
    font-family: 'Quicksand';
    font-size: 10;

   }

p{
    text-align: justify; 
    font-family: 'Quicksand';
    color:  rgb(0, 0, 0);
    font-size: 9;
   }
   
* {
    box-sizing: border-box;
}

/*Estilo de body*/
body {
    font-family: 'Quicksand';
    margin: 0;
}

/*Estilo de Header*/

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

/*Estilo para div logo */
.cajalogo {
    background: rgb(252, 132, 84);
   
}
.container-cover {
    padding: 1px;
    text-align: center;
    font-family:'Quicksand';
    color: rgb(255, 255, 255);
    width: 100%;
    background-image: url(../Imagenes/Portada.png);
    height: 400px;
}

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

  }
  
  #sidebar.active {
    left: 0px;
  }
  
  #sidebar a {
    color: rgb(0, 0, 0);
    padding: 5px;
    border-bottom: 1px solid  rgb(252, 132, 84);
    text-align: center;
  }

#sidebar a:hover {
    background-color: rgb(252, 132, 84);
    color: rgb(255, 255, 255);
    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(252, 132, 84);;
  }


/* Columna principal */
.col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}
.main {
    position: absolute;
    padding: 60px;

} 

.cubito {
text-align: center;

}

.cubito a {
    text-align: center;
    color: rgb(228, 92, 68);
    border-radius: 30px;
}

.cubito a:hover {
    text-align: center;
    background-color: rgb(255,255,255);
    padding: 5px;
}

/* Pie de página */
.footer {
    position:relative;
    bottom: -250px;
    padding: 10px;
    text-align: center;
    color: rgb(240, 192, 208);
    background: rgb(252, 132, 84);
}