/* @import "tailwindcss"; */

.group-container {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 0.5rem;
    /* padding: 1rem; */
}
.group {
    min-width: 8.5rem;
    min-height: 13rem;
    width: 22.5%;
    justify-content: center;
    border: 2px solid rgb(179, 167, 254);
}

 .group > div {
    width: 100%;
 }

.all-words {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: center;
    width: 100%;
}

.all-words > div {
    width: 23%;
}
.word {
    font-size: clamp(1rem, 3vw, 2rem);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: stretch;
    align-self: flex-start;
    background-color: #efefe6;
    margin: 2px;
    padding: 5px;
    cursor: grab;
    text-align: center;
    height: 3rem;
    font-weight: bold;
    line-height: 0.9em;
}
