.learn-container {
    background-color: #dbcfb1;
    border: inset 5px #d6c7a3;
    margin-top: 10px;            /* Default top margin for small screens */
    margin-left: 50px;        /* ✅ center container horizontally */
    margin-right: 50px;
    display: flex;
    justify-content: center;    /* Horizontal center */
    align-items: center;        /* Vertical center (optional) */
    flex-direction: column;     /* Stack children vertically */
    max-height: 325px;          
    max-width: 265px;
    padding: 10px;
  }
