body{
        background-color: #929575;
        color: #454926;
      }

      @keyframes tambalear {
        0% { transform: rotate(0deg); }
        25% { transform: rotate(3deg); }
        50% { transform: rotate(-3deg); }
        75% { transform: rotate(2deg); }
        100% { transform: rotate(0deg); }
      }
 
      #all{
        width: 560px;
        height: 600px;
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
      }
 
      #left{
        width: 215px;
        height: 600px;
        float: left;
      }
 
      #lefttop{
        background-color: #F9E5D9;
        width: 215px;
        height: 290px;
        margin-bottom: 20px;
        border: 1px solid #454926;
        background-image: url('images/pasde4.jpeg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
      }
 
      #leftbottom{
        background-color: #F9E5D9;
        width: 185px;
        height: 160px;
        padding: 15px;
        border: 1px solid #454926;
        text-align: center;
        overflow: scroll;
        overflow-x: hidden;
      }
 
      h1{
        margin: 0px;
        font-weight: normal;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-size: 20px;
        color: #454926;
      }

      h2{
        margin: 0px;
        font-weight: normal;
        letter-spacing: 2px;
        text-transform: lowercase;
        font-size: 20px;
        color: #454926
      }
 
      #leftbottom ul, li{
        list-style-type: none;
        padding: 0px;
        letter-spacing: 1px;
      }
 
      a{
        text-decoration: none;
        color: #68512F;
      }
      a:hover{
        color: #a47473;
      }
 
      #right{
        float: right;
        width: 325px;
        height: 600px;
      }
  
      #righttop{
        background-color: #F9E5D9;
        width: 295px;
        height: 325px;
        padding: 15px;
        margin-bottom: 20px;
        border: 1px solid #454926;
        text-align: center;
        overflow: scroll;
        overflow-x: hidden;
        font-size: 15px;
        letter-spacing: 1px;
      }
 
      .content{
        text-align: justify;
      }
 
      .photopile { 
        display: flex; 
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        max-width: 100%;
      }
      .photopile figure { 
        display: inline-block;
        background: white;
        box-shadow: 1px 4px 5px rgba(0,0,0,0.55);
        transform: rotate(2deg);
        margin: 0 -25px;
      }
      .photopile figure img {
        max-width: calc(100% - 2rem);
        margin: 1rem 1rem 0 1rem;
        border: 2px rgba(0,0,0,0.55) inset;
      }
      .photopile figcaption, .popovers figcaption {
        /*font-family: /* set this to have it match the rest of the page */;
        text-align: center;
        margin: 0.5rem 1rem 1rem 1rem;
        font-size: 1rem;
        color: black;
      }
      .photopile button { 
        background: none; 
        border: none;
        max-width: 40%;
      }
      .photopile button:hover, .photopile button:focus { 
        z-index: 3;
        cursor:pointer;
      }
      .photopile button:nth-child(2n) { 
        transform: rotate(-10deg);
      }
      .photopile button:nth-child(3n) {
        transform: rotate(5deg);
      }
      .photopile button:nth-child(4n) { 
        transform: rotate(4deg);
      }
      .photopile button:nth-child(5n) { 
        transform: rotate(-2deg);
      }
      .photopile button:nth-child(6n) {
        transform: rotate(-7deg);
      }
      :popover-open {
        border: none;
        box-shadow: 1px 4px 5px rgba(0,0,0,0.55);
        position: fixed;
        top: 50vh;
        left: 50vw;
        transform: translate(-50%,-50%);
      }
      .popovers figure:popover-open {
        display: block;
        background: white;
        width: 88vmin;
      }
      .popovers figure:popover-open figcaption {
        margin: 2.5vmin 1rem 4vmin 1rem;
        font-size: 175%;
        color: black;
      }
      .popovers figure:popover-open img {
        margin: 4vmin 4vmin 0 4vmin;
        width: 80vmin;
        border: 4px rgba(0,0,0,0.55) inset;
      } 
      .photopile img,
      .popovers img {
        width: 80px;   /* o el tamaño que prefieras */
        height: 100px;
        object-fit: cover; /* para que se recorten sin deformarse */
        border: 5px solid white; /* opcional, efecto polaroid */
        box-shadow: 2px 2px 5px rgba(0,0,0,0.2); /* un poco de sombra */
      }
 
      ::-webkit-scrollbar{
        width: 8px; 
        }
      ::-webkit-scrollbar-track{
        background-color: transparent;
      }
      ::-webkit-scrollbar-thumb{
        background-color: #5B6C43;  
      }
 
      #credit{
        font-size: 13px;
        position: fixed;
        bottom: 0;
        right: 0;
      } 
      #credit a{
        color: #c7acab;
      } 
      #credit a:hover{
        color: #614140;
      }

      #blinkies {
        text-align: center;
        margin-top: 10px;
      }
      #blinkies img {
        width: 220px;
        margin: 3px;
      }
      #blinkies img:hover {
        animation: tambalear 0.5s ease-in-out;
      }

      #currentsong {
        background-color: #F9E5D9;
        width: 295px;
        padding: 15px;
        border: 1px solid #454926;
        text-align: center;
        margin-top: 20px;
      } 