.grid {
    display: grid;
}
.flex {
    display: flex;
}
.flex-col {
    flex-direction: column;
}
.justify-center {
    justify-content: center;
}
.items-center {
    align-items: center;
}
.w-full {
    width: 100%;
}

.p-2 {
    padding: 0.5rem;
}
.font-bold {
    font-weight: bold;
}