
[style*="--aspect-ratio"] > :first-child {
    width: 100%;
  }
  [style*="--aspect-ratio"] > img {  
    height: auto;
  } 
  @supports (--custom:property) {
    [style*="--aspect-ratio"] {
      position: relative;
    }
    [style*="--aspect-ratio"]::before {
      content: "";
      display: block;
      padding-bottom: calc(100% / (var(--aspect-ratio)));
    }  
    [style*="--aspect-ratio"] > :first-child {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
    }  
  }

section {
    height: 100vh;
    width: 100%;
    color: #DF5700;
}

section:nth-child(1) {
    background-color: aqua;
}
section:nth-child(2) {
 background-image: url('/HTML/img/tapa-editorial-lisboa.jpg');
 background-position: center center;
 background-size: cover;
}
section:nth-child(3) {
    
}
section:nth-child(4) {
    background-color: #fff;
}

.descripcion {
    display: grid;
    grid-template-columns: 15% 2fr 1fr 15%;
    grid-template-rows: 1fr;
    grid-template-areas:
    ".  descripcion datos   .";
    height: 100%;
    width: 100vw;
    align-items: center;
    justify-content: baseline;
}

.abajo {
    grid-area: info;
}

.lado-izq {
    grid-area: descripcion;
    font-size: 18px;
    font-family: 'Apercu Light';
}

.lado-der {
    grid-area: datos;
    font-size: 13px;
    font-family: 'apercu light';
    padding-left: 50px;
    padding-top: 50px;
}

.lado-izq h1 {
    font-family: 'Recoleta Bold';
    font-size: 5em;
    line-height: 0.8em;
}

.lado-izq h3 {
    font-family: 'Apercu Medium';
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding-bottom: 25px;
}

.lado-der ul {
    list-style: none; font-family: 'apercu medium'; text-transform: uppercase; 
    font-size: 11px; color: #DF5700; width: 150px; line-height: 20px;
}
.lado-der li::before {content: ""; color: #DF5700; font-family: 'Recoleta Light'; 
    font-size: 20px;margin-left: -1.5em; 
    padding-right: 10px;
    text-align: right; direction: rtl}

.lado-der li {list-style: none; margin: 0px;}


.palette-img {
    width: 450px; height: 500px; 
    background: url(img/lisboa/img-indexz1.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.palette-flex {
    display: flex; align-items: center;
}
h1.subtitulo  {
    font-family: 'Recoleta Black';
    font-size: 6vmin;
    padding: 60px 0 60px 0;
    text-transform: capitalize;
}

.proyecto-extenso {
    width: 80%;
    margin: 0 auto;
    height: 100%;
}

.proyecto-extenso p {
    margin: 0 150px 0 150px;
    font-family: 'Apercu Light';
}

blockquote {
    font-family: 'Menege';
    font-size: 5vmin;
    padding: 100px;
}

blockquote::before {
    content: "-";
}
blockquote::after {
    content: "-";
}

.fullscreen {
    background-size: cover;
    width: 100%;
    height:100%;
    align-content: center;
    justify-content: center;
}

.responsive {
    max-width: 100%;
    height: auto;
  }
  .responsive-400 {
      width: 100%;
    max-width: 350px;
    height: auto;
    padding: 10px;
  }
  .responsive-500 {
    max-width: 100%;
  max-height: 750px;
  padding: 10px;
}
  img {
      margin-bottom: 0px;
  }

@media only screen and (max-width: 450px) {
    #resume-footer {
        position: fixed;
        font-size: 3vmin;
        bottom: 0px;
        height: 10vh;
    }


    .palette-img {
        width: 100%;
        clear: both;
    }

.descripcion {
        display: grid;
        grid-template-columns: 5% 1fr 5%;
        grid-template-rows: 1fr 1fr;
        grid-template-areas:
        ".   descripcion  ."
        ".  datos   .";
        height: 100vh;
        width: 100vw;
        justify-content: baseline;
        padding: 50px 25px 0 25px;
    }
    .lado-izq {
        margin-top: 100px;
    }


    .lado-der {
        grid-area: datos;
        font-size: 13px;
        font-family: 'apercu light';
        padding-left: 0px;
        padding-top: 0px;
    }

    ul#derivados li {
        display:inline;
        padding: 1px 5px 1px 25px;
        margin-left: 5px;
        border: 1px solid #DF5700;
        border-radius: 25px;
      }
      .lado-der ul {
          width: 100%;
      }
      .proyecto-extenso p {
        margin: 0 15px 0 15px;
        font-family: 'Apercu Light';
    }
    h1.subtitulo {
        font-size: 6vmin;
        padding: 10px 0 10px 0;
    }

    .palette-flex {
         flex-wrap: wrap;
    }
    .lado-izq h1 {
        font-family: 'Recoleta Bold';
        font-size: 8vmin;
        line-height: 0.8em;
    }

}