/* طراحی کلی صفحه */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 315vh;
    background-color: #f4f4f9;
}

/* کانتینر اصلی */
.container {
    text-align: center;
    max-width: 700px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* محتوای توضیحات */
.content {
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* استایل تصویر */
img {
    max-width: 100%;
    height: 300px;
    border-radius: 10px;
}
button{
    height: 50px;
    width: 200px;
    background-color: #2196f3;
    border-radius: 10px;  
}