/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Tahoma, Arial, sans-serif;
}

html, body {
    width: 100%;
    background: #f5f5f5;
}


/* ===== HEADER ===== */
.header {
    width: 100%;
    background: #5E454B;
    color: white;
    padding: 20px;
    text-align: center;
}

.header h1 {
    font-size: 28px;
}

.header nav {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.header nav a {
    color: white;
    margin: 6px 10px;
    font-size: 16px;
    text-decoration: none;
}

/* ===== ARTICLE ===== */
.article {
    width: 100%;
    background: white;
    padding: 50px 80px;
}

.article h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.article h2 {
    font-size: 26px;
    margin: 35px 0 15px;
}

.article p {
    font-size: 19px;
    line-height: 1.9;
    margin-bottom: 18px;
    text-align: justify;
}

.article img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    margin: 25px 0;
    border-radius: 6px;
}

.article blockquote {
    background: #f1f1f1;
    border-right: 5px solid #5E454B;
    padding: 18px;
    margin: 30px 0;
    font-size: 17px;
}

/* ===== FOOTER ===== */
.footer {
    width: 100%;
    background: #5E454B;
    color: white;
    text-align: center;
    padding: 18px;
    font-size: 15px;
}

/* ================================================= */
/* ================= MOBILE FIX ==================== */
/* ================================================= */

@media (max-width: 768px) {

    .header h1 {
        font-size: 22px;
    }

    .header nav a {
        font-size: 15px;
    }

    .article {
        padding: 25px 16px;
    }

    .article h1 {
        font-size: 26px;
    }

    .article h2 {
        font-size: 21px;
    }

    .article p {
        font-size: 17px;
        line-height: 1.8;
    }

    .article img {
        max-height: 280px;
    }

    .article blockquote {
        font-size: 16px;
    }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 400px) {

    .header nav {
        flex-direction: column;
    }

    .header nav a {
        margin: 6px 0;
    }
}
النتيجة النهائية