*{
    margin: 0px;
    padding: 0px;
  }
  
  body {
      margin: 0;
      width:100%;
      background-color: #202020;
      font-family: Arial, Helvetica, sans-serif;
    }
  
  
  /* inicio del header*/
  header {
      display: flex;
      justify-content: space-between;
      align-items: center;
  
      color: #fff;
      padding: 20px;
    }
    
    #logo a {
      display: block;
    }
    
    #logo img {
      width: 200px;
      height: auto;
    }
    
    #nav {
      display: flex;
    }
    
    #nav ul {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    
    #nav li {
      margin: 0 10px;
    }
    
    #nav a {
      color: #fff;
      text-decoration: none;
      font-size: larger;
    }
    
    #nav a:hover {
      color: #ccc;
    }
  
  /* fin del header */
  
  
  /* inicio del hero */
  .hero {
    background-image: url("mesa.jpg");
    background-size: cover;
    background-position:bottom;
    padding: 200px 0; 
    background-attachment: fixed;
  }

  .hero-text {
    text-align: left;
    position: absolute;
    font-size: x-large;
    top: 30%;
    left: 15%;
    transform: translate(-50%, -50%);
    color: #fff;
  }
  
  
  /* fin del hero */
  
  /* inicio de galeria */
  
  #titulo {
    text-align: center;
    color: #fff;
  }
  
  * {box-sizing: border-box}
  .mySlides {display: none}
  img {vertical-align: middle;}
  
  /* Slideshow container */
  .slideshow-container {
    max-width: 1000px;
    height: auto;
    position: relative;
    margin: auto;
  }
  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }
  
  /* Caption text */
  .text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 37px;
    width: 100%;
    text-align: center;
    font-family: Verdana, sans-serif;
    background: rgb(0, 0, 0); /* Fallback color */
    background: rgba(0, 0, 0, 0.5); /* Black background with 0.5 opacity */
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active, .dot:hover {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  .mySlides img {
    height: 650px;
  }
  
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
  /* On smaller screens, decrease text size */
  @media only screen and (max-width: 300px) {
    .prev, .next,.text {font-size: 11px}
  }
  
  /* fin de galeria */
  
/* inicio de footer*/
/* Estilos generales */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h3 {
  font-size: 1.2em;
  margin: 0 0 20px;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  font-size: 0.9em;
  line-height: 1.5;
}

a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #ccc;
}

/* Estilos del footer */
#footer {
  background-color: #333;
  color: #fff;
  padding: 50px 0;
  text-align: center;
}

#footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
}

#footer .column {
  flex-basis: 100%;
  margin-bottom: 30px;
}

#footer .column:last-child {
  margin-bottom: 0;
}

#footer .column h3 {
  font-size: 1.2em;
}

#footer .column ul {
  text-align: center;
}

#footer .column ul li {
  text-align: left;
}

#footer .column a img {
  max-width: 25px;
  height: auto;
}

/* Media queries para adaptabilidad */
@media only screen and (min-width: 768px) {
  #footer .column {
    flex-basis: calc(33.33% - 20px);
    margin-right: 20px;
  }

  #footer .column:last-child {
    margin-right: 0;
  }

  #footer .column h3 {
    font-size: 1.5em;
  }
}
/* fin de footer*/
  
  hr {
    border: 0;
    height: 2px;
    background-color: #BFBEBE;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  @media screen and (max-width: 768px) { /* Establecemos una regla para dispositivos con un ancho máximo de 768px */  

    #nav {
      width: 100%;
    }
    #logo img {
      display: none;
    }
    .hero-text {
      text-align: center;
      left: 50%;
    }

    .mySlides img {
      height: 300px;
    }
    }  