

    /* فونت و رنگ‌بندی پایه */
    body {
        
        background-color: black;
        
        line-height: 1.6;
    }

    /* هدر صفحه */
    

    /* کانتینر محتوا */
    .container {
        max-width: 1000px;
        margin: 30px auto;
        background-color: #100c09;
        padding: 30px 20px;
        border-radius: 20px;
        border: 1px solid #dab773;
        box-shadow: 1px 1px  15px 1px #4141418e;
    }
    .orginal{
        text-align: center;  
    }

    /* تیتر بخش‌ها */
    .h2 {
        margin-top: 25px;
        margin-bottom: 10px;
        border-bottom: 1px solid #dab773;
        padding-bottom: 5px;
        direction: rtl;
    }

    /* پاراگراف‌ها */
    p {
        margin-bottom: 20px;
        text-align: justify;
        direction: rtl;
        color: white;
    }

    /* لیست‌ها */
    ul {
        
        margin-bottom: 15px;
        direction: rtl;
        list-style: none;
        color: white;
    }

    li {
        margin-bottom: 8px;
    }

    /* ریسپانسیو */
    @media (max-width: 768px) {
        .container {
            padding: 13px;
            margin: 5px 7px;
        }
        
    }