/* Extra small devices (max 575px) */
@media screen and (max-width: 575px) {
    .quote-box {
        padding: 20px;
        max-width: 95%;
    }

    h1 {
        font-size: 1.8rem;
    }

    .quote-box > p {
        font-size: 1rem;
    }

    #quote {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    #author {
        font-size: 0.9rem;
    }

    button {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

/* Tablets (576px - 767px) */
@media screen and (min-width: 576px) and (max-width: 767px) {
    .quote-box {
        padding: 30px;
        max-width: 90%;
    }

    h1 {
        font-size: 2.2rem;
    }

    #quote {
        font-size: 1.4rem;
    }

    button {
        padding: 12px 35px;
        font-size: 1.1rem;
    }
}
