/* Typography */
body {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    color: var(--color-text-primary);
    background-color: var(--color-background);
}

h1, h2, h3 {
    font-family: 'Purple Purse', cursive;
    font-style: normal;
    font-weight: 400;
}

p, button {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
}

/* H1 Styles */
h1 {
    /* Mobile (320px - 833px) */
    font-size: 20px;
    line-height: 30px;
}

/* Tablet (834px - 1199px) */
@media (min-width: 834px) {
    h1 {
        font-size: 34px;
        line-height: 50px;
    }
}

/* Desktop (1200px+) */
@media (min-width: 1200px) {
    h1 {
        font-size: 50px;
        line-height: 60px;
    }
}

/* H2 Styles */
h2 {
    /* Mobile (320px - 833px) */
    font-size: 18px;
    line-height: 26px;
}

/* Tablet (834px - 1199px) */
@media (min-width: 834px) {
    h2 {
        font-size: 30px;
        line-height: 36px;
    }
}

/* Desktop (1200px+) */
@media (min-width: 1200px) {
    h2 {
        font-size: 36px;
        line-height: 40px;
    }
}

/* H3 Styles */
h3 {
    /* Mobile (320px - 833px) */
    font-size: 16px;
    line-height: 24px;
}

/* Tablet (834px - 1199px) */
@media (min-width: 834px) {
    h3 {
        font-size: 20px;
        line-height: 24px;
    }
}

/* Desktop (1200px+) */
@media (min-width: 1200px) {
    h3 {
        font-size: 22px;
        line-height: 24px;
    }
}

/* Paragraph Styles */
p {
    /* Mobile (320px - 833px) */
    font-size: 14px;
    line-height: 24px;
}

/* Tablet (834px - 1199px) */
@media (min-width: 834px) {
    p {
        font-size: 16px;
        line-height: 24px;
    }
}

/* Desktop (1200px+) */
@media (min-width: 1200px) {
    p {
        font-size: 16px;
        line-height: 24px;
    }
}

/* Button text inherits from p styles */
button {
    font-size: inherit;
    line-height: inherit;
}

