/* tailwind-style css */

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }

.items-center { align-items: center; }
.self-center { align-self: center; }

.justify-between { justify-content: space-between; }

.font-bold { font-weight: bold; }

.text-center { text-align: center; }

.w-full { width: 100%; }
