*{
  font-family: Arial, Helvetica, sans-serif;
}
html{
  height: 100%;
}
body{
  margin: 0;
  height: 100%;
  justify-content: space-between;
}
.horizontal{
  display: flex;
  flex-direction: row;
}
.vertical{
  display: flex;
  flex-direction: column;
}
.centradoH{
  display: flex;
  justify-content: center;
}
.centradoV{
  display: flex;
  align-items: center;
}
.centradoHV{
  display: flex;
  justify-content: center;
  align-items: center;
}
#toolbar{
  width: 60px;
  height: 100%;
  background-color: #353535;
  position: fixed;
  justify-content: space-between;
  z-index:10;
  padding: 10px 0;
  box-sizing: border-box;
}
#toolbar img{
  width: 95%;
  height: max-content;
  cursor: pointer;
}
#toolbar .redes{
  width: 100%;
}
#toolbar .redes i{
  font-size: 38px;
  color: white;
  cursor: pointer;
  padding: 0 11px 11px 11px;
}
#toolbar-horizontal{
  width: 100%;
  height: 60px;
  background-color: #292929;
  position: fixed;
  justify-content: space-between;
  z-index:10;
  padding: 0 10px;
  box-sizing: border-box;
  display: none;
}
#toolbar-horizontal img{
  height: 100%;
  cursor: pointer;
}
#toolbar-horizontal .redes{
  height: 100%;
}
#toolbar-horizontal .redes i{
  font-size: 38px;
  color: white;
  cursor: pointer;
  padding: 11px 12px;
}
#contenedor{
  width: 100%;
  height: 100%;
  padding-left: 60px;
}
#contenedor2{
  width: 800px;
  background-color: #F8F8F8;
  height: 100%;
  justify-content: space-between;
}
#contenedor3{
  width: 100%;
}
#footer{
  width: 100%;
}
#footer .barra{
  width: 100%;
  height: 30px;
  background-color: #3e3e3e;
}
#footer .div1{
  width: 100%;
  background-color: #D9D9D9;
  padding: 10px 0;
  justify-content: space-evenly;
  box-sizing: border-box;
}
#footer .div1 .logo{
  width: 100px;
  height: 100px;
  border-radius: 50px;
  background-color: #2f2f2f;
}
#footer .div1 .logo img{
  width: 78px;
}
#footer .div2{
  font-size: 14px;
}
#footer .div2 a{
  margin: 10px 0;
  line-height: 32px;
  text-decoration: none;
  color: black;
  cursor: pointer;
}
#footer .div2 a:hover{
  background-color: #b3b2b2;
}

@media only screen and (max-width: 800px) {
  #toolbar{
      display: none;
  }
  #toolbar-horizontal{
      display: flex;
  }
  #contenedor{
      padding: 60px 0 0 0;
  }
  #contenedor2{
      width: 100%;
  }
  #footer .div1 {
      flex-direction: column;
      padding: 10px 15px;
  }
  #footer .div2 {
      width: 100%;
      margin-bottom: 10px;
  }
}