#categoryContainer {
    display: flex;
    flex-direction: row;
    border: 1px solid #ccc;
    /* Optional: further alignment */
    justify-content: space-around;
    /* Distributes items evenly with space around them */
    align-items: center;
    /* Aligns items vertically in the center */
}

 .catWords {
    display: flex;
    flex-direction: column;
    margin-right: 10px;
    padding: 5px;
    /* Optional: adds some space between the name and words */
}
.catName {
    font-weight: bold;
    margin-bottom: 5px;
    /* Optional: adds some space between the name and words */
}