
/* pantallas CHICASs < 600px */
.container {
    width: 100%;
    justify-content: center;
    display: grid;
    gap: 10px; /* Espacio entre los elementos */
    grid-template-columns: 1fr; /* Por defecto, 1 por fila */
  }

  /* `pantalla MEDIANAS > 600px mostrar de a 2 */
  @media (min-width: 760px) {
    .container {
        justify-content: center;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
  }
  
    /* pantalla GRANDE >1024px <600px, mostrar de a 3 */
  @media (min-width: 1024px) {
    .container {
        justify-content: center;
        width: 95%;
        height: 100%;
        flex-wrap: wrap;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
  } 


  .box {
    gap: 1rem;
    align-items: center;
    width: 100%;
    height: auto;
    background-color: white;
    flex: 1;
    text-align: center;
    border: 1px solid #ddd;
  }
  