/* Utilities */

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-0 {
    margin-bottom: 0;
}

.my-0 {
    margin-block: 0;
}

.my-1-4 {
    margin-block: 0.25rem;
}

.mx-auto {
    margin-inline: auto;
}

.flex {
    display: flex;
}

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

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

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

.items-end {
    align-items: flex-end;
}

.gap-1-4 {
    gap: 0.25rem;
}

.gap-1-2 {
    gap: 0.5rem;
}

.gap-1 {
    gap: 1rem;
}

/* Typography */

.text-md {
    font-size: 1.25rem;
}

.text-lg {
    font-size: 1.5rem;
}

.text-xl {
    font-size: 2rem;
}

.font-bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

.no-underline {
    text-decoration: none;
}

/* Sizing */

.w-full {
  width: 100%;
}
