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

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

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

.justify-center {
    justify-content: center;
}

.gap-x-small {
    gap: 0.5em;
}

.gap-small {
    gap: 0.7em;
}

.gap-mid {
    gap: 2em;
}

.gap-big {
    gap: 3em;
}

.w-100 {
    width: 100%;
}

.w-75 {
    width: 75%;
}

.w-50 {
    width: 50%;
}

.w-25 {
    width: 25%;
}

.w-30 {
    width: 30%;
}

.w-33 {
    width: 33%;
}

.h-100 {
    height: 100%;
}

.h-75 {
    height: 75%;
}

.h-50 {
    height: 50%;
}

.h-25 {
    height: 25%;
}


.black {
    color: black;
}

.white {
    color: white;
}

.mt-small {
    margin-top: 1em;
}

.mt-mid {
    margin-top: 2em;
}

.mt-big {
    margin-top: 3em;
}

.p-big {
    padding: 1em;
}
.p-mid {
    padding: 0.75em;
}
.p-small {
    padding: 0.5em;
}

.mh-auto {
    margin-left: auto;
    margin-right: auto;
}

.m0-auto {
    margin: 0 auto;
}


@media (max-width: 900px) {
    .h1 {
        font-size: 1.5em;
    }
}
@media (min-width: 901px) {
    .h1 {
        font-size: 2em;
    }
}



@media (max-width: 900px) {
    .h2 {
        font-size: 1.2em;
    }
}
@media (min-width: 901px) {
    .h2 {
        font-size: 1.5em;
    }
}



@media (max-width: 900px) {
    .h3 {
        font-size: 1em;
    }
}
@media (min-width: 901px) {
    .h3 {
        font-size: 1.2em;
    }
}


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

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

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


.obj-fit-cover {
    object-fit: cover;
}
