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

h1{
    text-align: center;
}

h2{
    text-align:center;
    color: rgb(120, 0, 40);
    font-family: 'Franklin Gothic Medium';
   }

p{
    text-align: justify; 
    font-family: 'Franklin Gothic Medium';
    color:  rgb(120, 0, 40);
   }
   
* {
    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(120, 0, 40);
   
}
.container-cover {
    padding: 120px;
    text-align: center;
    font-family:'Franklin Gothic Medium';
    color: rgb(238, 218, 225);
    width: 100%;
    background-image: url(../Imagenes/panoramicavino1.png);
    height: 400px;
}

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

  }
  
  #sidebar.active {
    left: 0px;
  }
  
  #sidebar a {
    color: rgb(238, 218, 225);
    padding: 5px;
    border-bottom: 1px solid  rgb(120, 0, 40);
    text-align: center;
    text-decoration-line: none;
  }

#sidebar a:hover {
    color: rgb(48, 0, 16);
    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;
    padding: 60px;

} 

.cubito {
text-align: center;

}

.cubito a {
    text-align: center;
    color: rgb(48, 0, 16);
    border-radius: 10px;
}

.cubito a:hover {
    text-align: center;
    background-color: rgb(48, 0, 16);
    color: rgb(240, 192, 208);
    padding: 5px;
}

/* Pie de página */
.footer {
    position: static;
    padding: 20px;
    text-align: center;
    color: rgb(240, 192, 208);
    background: rgb(46, 0, 16);
}