.flex {
    display: flex;
}

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

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

.gap-20 {
    gap: 20px;
}

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

.bg-black {
    background-color: black;
}
