body {
    font-family: 'Tajawal', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    direction: rtl;
}

blockquote {
    background-color: rgb(242, 243, 243);
    border-radius: 15px;
    border: 4px solid rgb(228, 220, 220);
    margin: auto;
    padding: 20px;
    width: 80%;
}

h1, h2, h3, h4, h5, h6 {
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: #337ab7;
}

button {
    background-color: green;
    border-radius: 10px;
    color: white;
    height: 30px;
    width: 200px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #3e8e41;
}

/* Responsive design */

@media only screen and (max-width: 768px) {
    blockquote {
        width: 90%;
        padding: 15px;
    }
    button {
        width: 150px;
    }
}

@media only screen and (max-width: 480px) {
    blockquote {
        width: 95%;
        padding: 10px;
    }
    button {
        width: 100px;
    }
}

@media only screen and (max-width: 320px) {
    blockquote {
        width: 100%;
        padding: 5px;
    }
    button {
        width: 80px;
    }
}