::-webkit-scrollbar {
    width: 13px; 
    background-color: #444444;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #5c5c5c; 
    border-radius: 2px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: #8f8f8f; 
  }

  .shadow, .sombra{

    box-shadow: 3px 5px 5px rgba(0, 0, 0, 0.3);

  }

  
  @keyframes muestra{

    from{
            opacity: 0;
            scale: 25%;
    }

    to{

        opacity: 1;
        scale: 100%;

    }

  }

  .basicRow{
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .w600{
    font-weight: 600;
  }

  .muestra{

    view-timeline-name: --image;
    view-timeline-axis: block;
    animation-timeline: --image;
    animation-name: muestra;
    animation-range: entry 25% cover 30%;
    animation-fill-mode: both;
  
  }

  .fondo {
    /* Basic dimensions and centering */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  
    /* Dark mode colors and gradient */
    background: #121212; /* Fallback for browsers that don't support gradients */
    background: linear-gradient(
      135deg,
      #121212 25%,
      #1a1a1a 25%,
      #1a1a1a 50%,
      #121212 50%,
      #121212 75%,
      #1a1a1a 75%,
      #1a1a1a
    );
    background-size: 40px 40px;
  
    /* Animation */
    animation: move 4s linear infinite;
  }
  
  @keyframes move {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 40px 40px;
    }
  }
  