@font-face {
    font-family: 'ShakyHand';
    src: url(../img/shakyhandsomecomic.otf) format('truetype');
    font-style: normal;
    font-weight: normal;
  }
  
@font-face {
    font-family: 'ShakyHandL';
    src: url(../img/shakyhandsomecomicligth.otf) format(truetype);
    font-style: normal;
    font-weight: normal;
  }
  
  :root {
    --rosa: #ed028c;
    --cafe: #231f20;
    --morado: #5b2e91;
    --verde: #a6ce39;
    --FF: 'ShakyHand';
  }
  
  ::-webkit-scrollbar {
    background: var(--cafe);
    width: 15px;
  }
  
  ::-webkit-scrollbar-button {
    background: #403c3d;
    cursor: pointer;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #555051;
    border-radius: 20px;
    width: 10px;
    padding: 5px;
  }
  
  ::-webkit-scrollbar-track-piece {
    background: var(--cafe);
  }
  
  .tt h2{
    margin: 0;
    margin-bottom: -5px;
    display: block;
    font-size: 40px;
  }

  

  .cont-catalogocomp {
    margin: 0 auto;
    margin-bottom: 15px;
    width: 95%;
    margin-top: calc(151px + 15px);
    margin-bottom: 15px;
    gap: 5px;
    display: flex;
    flex-direction: column;
  }
  
  .catalogocomp {
    background: rgba(72, 72, 72, 0.435);
    box-sizing: border-box;
    overflow: hidden;
  }
  
  .categoria {
    padding: 0 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: auto;
    scrollbar-color: initial;
    height: min-content;
    max-height: 0;
    transition: max-height 0.3s ease;
    overflow-y: hidden;
  }
  
  .catalogocomp h2 {
    padding: 10px;
    margin: 0;
    background-color: var(--cafe);
    color: white;
    font-family: var(--FF);
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 30px;
  }
  
  .flechacat {
    height: 20px;
    transform: rotate(90deg);
    align-self: center;
    width: auto;
    margin-right: 20px;
  }
  

  .contenido-categoria{
    width: auto;
    display: flex;
    flex-direction: row;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-left: 15px;
    height: 100%;
    gap: 10px;
    margin: 0;
    padding: 0;
  }
  .re{
    margin: 0;
  }


  .catalogocomp .categoria .contenido-categoria {
    padding: 10px; 
  }
  @media (min-width:650px){
    .cont-catalogocomp{
        margin-top: 15px;
        width: 85%;
    }
  }
  @media (min-width:1100px){
    .cont-catalogocomp{
        margin-top: calc(174px + 30px);
        width: 70%;
    }
  }