a{
    text-decoration: none;
}

.textCenter{
    text-align: center;
}

.flex{
    display: flex;
}

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

.flexCol{
    display: flex;
    flex-direction: column;
}

.flexWrap{
    flex-wrap: wrap;
}

.spaceAround{
    justify-content: space-around;
}

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

.spaceCenter{
    justify-content: center;
}

.itemCenter{
    align-items: center;
}

.contentCenter{
    align-content: center;
}

.relative{
    position: relative ;
}

.absolute{
    position: absolute;
}

.contain{
    object-fit: contain;
}