@import "tailwindcss";

@theme {
    breakpoint-custom-lg: 755px;
}

.title1 {
    font-size: 45px;
    line-height: 120%;

    @media (max-width: theme(--breakpoint-custom-lg)) {
        font-size: 32px;
    }
}

.header1 {
    font-size: 32px;
    line-height: 120%;

    @media (max-width: theme(--breakpoint-custom-lg)) {
        font-size: 22px;
    }
}

.header2 {
    font-size: 24px;
    line-height: 120%;

    @media (max-width: theme(--breakpoint-custom-lg)) {
        font-size: 18px;
    }
}

.body1 {
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -2%;

    @media (max-width: theme(--breakpoint-custom-lg)) {
        font-size: 15px;
    }
}

.caption1 {
    font-size: 15px;
    line-height: 120%;
    letter-spacing: -2%;

    @media (max-width: theme(--breakpoint-custom-lg)) {
        font-size: 13px;
    }
}
.caption2 {
    font-size: 11px;
    letter-spacing: -2%;
}