*{
    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("cama.jpeg");
    background-size: cover;
    background-position:bottom;
    padding: 400px 0; 
    background-attachment: fixed;
    width: 100%;
  }
  
  .hero-text {
    text-align: center;
    position: absolute;
    font-size: xx-large;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
  }

  
  /* fin del hero */
  
  /* inicio de galeria */
  
  .galeria {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    margin-top: 20px; 
}

* {
  box-sizing: border-box;
}

.container {
  position: relative;
  max-width: 800px;
  margin: 20px;
}

.container img {
  width: 650px; 
  height: 650px; }

.container .content {
  position: absolute;
  bottom: 0;
  background: rgb(0, 0, 0); /* Fallback color */
  background: rgba(0, 0, 0, 0.5); /* Black background with 0.5 opacity */
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
  font-family: Arial;
  font-size: 17px;
}


  /* fin de galeria */
  
/* inicio de footer*/
  #footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
  }
  
  #footer .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
  }
  
  #footer h3 {
    font-size: 1.2em;
    margin: 0 0 20px;
  }
  
  #footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  #footer li {
    font-size: 0.9em;
    line-height: 1.5;
  }
  
  #footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
  }
  
  #footer a:hover {
    color: #CACACA;
  }
  
  #footer .center-column {
    font-size: 1.2em;
  }
  
  #footer .right-column {
    font-size: 1.2em;
  }
  
  #footer .right-column img{
    width: 25px;
    height: auto;
  }
  
  #footer .fa {
    font-size: 1.2em;
    margin: 0 5px;
    top: 30%;
  }
  
  #footer .fa img{
    width: 25px;
    height: auto;
  }
  /* 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%;
    }
    .galeria {
      width: 100%;
    }
    .content {
      text-align: center;
    }
    .content p{
      display: none;
    }
    }  