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

.flex-col {
    display:flex;
    flex-direction:column;
}
.justify-center {
    justify-content:center;
}
.white{
    color:#fff;
}

h3 {
    margin-top:0;
    margin-bottom:16px;
}

.w-full {
    width: 100%;
}

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

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