.ml-auto {
    margin-left: auto;
}

.mr-auto {
    margin-right: auto;
}

.mt-auto {
    margin-top: auto;
}

.mb-auto {
    margin-bottom: auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.h-full {
    height: 100%;
}

.w-full {
    width: 100%;
}

.object-cover {
    object-fit: cover;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.font-Arial {
    font-family: Arial, sans-serif;
}

.order-first {
    order: -1;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.brightness-dark {
    -webkit-filter: brightness(0.5);
    filter: brightness(0.5);
}
