.motivation {
    max-width: 800px;
    margin: 40px auto;
    padding: 25px;
    background-color: aliceblue;
}

.quote-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
}

.quote-box p {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.8;
}

#author {
    display: block;
    margin-top: 20px;
    font-size: 18px;
    color: #777;
}

.motivation h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 15px;
}


/* ===========================
   Motivation Section Responsive
=========================== */

@media (max-width: 768px) {
    .motivation {
        width: 95%;
        margin: 25px auto;
        padding: 15px;
    }
    .quote-box {
        padding: 20px 15px;
        border-radius: 10px;
    }
    .quote-box p {
        font-size: 18px;
        line-height: 1.6;
    }
    #author {
        font-size: 16px;
        margin-top: 15px;
    }
    .motivation h2 {
        font-size: 24px;
        text-align: center;
        margin-bottom: 15px;
    }
}


/* Extra Small Devices */

@media (max-width: 480px) {
    .motivation {
        width: 96%;
        margin: 20px auto;
        padding: 12px;
    }
    .quote-box {
        padding: 18px 12px;
    }
    .quote-box p {
        font-size: 16px;
        line-height: 1.5;
    }
    #author {
        font-size: 14px;
    }
    .motivation h2 {
        font-size: 20px;
    }
}