
#cuerpo {
    position: relative;
    padding: 0px;
    min-height: 100vh;
    /* box-shadow: 0px 0px 60px 2px #cacaca; */
    /* box-shadow: 15px 0px 50px 1px #edeed6; */
    box-shadow: 0px 0px 50px 1px #cccfa6;
    
}

/* #encabezado, main, footer {
    background-color: #fefefe;
}
 */
#tira {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: auto;
}

.home {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.logo {
    display: block;
    max-width: 300px;
    height: auto;
}

h5 {
    position: relative;
    bottom: 12px;
}

button div {

    transform: rotate(-45deg);
    font-size: 1.2rem;

}

/*Estilos categorias*/

details {
    margin: 0 auto;
    margin-top: 30px;
    width: fit-content;
  }

details summary {
    margin: 0 auto;
    width: fit-content;
    font-size: 1.15rem;
  }


details summary::marker,
  :is(::-webkit-details-marker) {
    /*caracter utf8 hex*/
    content: '\29FE\20';
    font-family: monospace;
    font-weight: bold;
    font-size: 1.15rem;
  }
  
details[open] summary::marker {
    content: '\29FF\20';
    transform: rotate(-45deg);
  }

/*Estilos main*/

  main {

    min-height: 10vh;

}

/*Estilos del overlay*/

.linkimg {

    position:relative;
    display:inline-block;

}

.overlay {
    opacity: 0;
    transition: opacity 0.17s ease;
}

.linkimg .overlay span {
    display:none;
}

.linkimg:hover .overlay span {
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    margin: 0;
    color:#212529;
    font-size: 5rem;
    text-decoration: underline;
    display: inline;
    
}
 

.linkimg:hover .overlay {
    
    width:100%;
    height:100%;
    background-color:rgba(255, 255, 255, 0.75);
    opacity: 1;
    border: 1px solid #aaabac;
    border-radius: 0.375rem;
    position:absolute;
    top:0;
    left:0;
    display:inline-block;
    box-sizing:border-box;
}

/*estilos paginador*/

.paginador {

    margin-top: 5vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.paginador a {

    text-decoration: none;
    color: #000;
    font-size: 1.7rem;
}

.paginador a:hover {

    text-decoration: underline;
    opacity: 0.5;

}

.disabled {

    pointer-events: none;
    opacity: 0.5;

}


/*estilos footer*/

footer {

    padding-bottom: 5vh;

}

footer div {

    padding-top: 3vh;
    color:#212529;

}

.fondo {
   
    margin-top: 30px;
    width: 125px;
    height: auto;
}

/* @media screen and (min-width: 650px) {

    #tira {
        width: 275px;
    }
  
  } */
  
  /* Monitor de 1024px a 1440px */
  
  @media screen and (min-width: 800px) {
  
    #tira {
        width: 275px;
    }
  
  }
  
  /* Monitor a partir de 1441px */
  
  @media screen and (min-width: 1200px) {
  
    #tira {
        width: 300px;
    }
  
  }