body {
    font-family: 'Vazirmatn', sans-serif;
    direction: rtl;
    text-align: right;
    background-color: #000000;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column; /* تغییر به عمودی */
    justify-content: flex-start; /* تغییر به بالا */
    align-items: center;
}

.navBar{
    display: flex;
    padding-top: 10px;
    padding-right: 20px;
    width: 100%;
    justify-content: right;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);}
.nav ul {
    display: flex;
}
.nav ul li{
    list-style: none;
}

.nav ul li a{
font-size: 20px;
color: #000000;
font-style: normal;
font-weight: 500;
line-height: normal;
margin-left: 40px;
text-decoration: none;
}

.nav ul li a:hover{
    color: rgba(0, 0, 0, 0.705);
    font-size: 19.7px;
    }
.about-container {
    display: flex;
    flex-direction: column; /* تغییر به عمودی */
    align-items: center;
    text-align: center;
    margin-top: 80px; /* افزودن مارجین بالا */
}

.about-box {
    max-width: 800px;
    padding: 20px;
    background: linear-gradient(90deg, #3498db27, #2ecc7016);
    border-radius: 10px;
    color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column; /* تغییر به عمودی */
    align-items: center;
}

.about-content {
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 30px;
    margin-bottom: 20px;
}
a{
    color: #3498db;

}

.profile-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

@media only screen and (max-width: 450px){
    .navBar{
        display: block;
        margin-right: 0;
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .container{
        padding: 40px;
    }
    .nav ul li a{
        font-size: 15px;
        padding: 0;
        display: flex;
        text-align: center;
        justify-content: center;
        text-align: center;
    }
    .nav ul li a:hover{
        color: rgba(0, 0, 0, 0.705);
        font-size: 14px;
        }
}

.footer {
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer-text {
    font-size: 14px;
    color: #888;
  }
  
  .footer-heart {
    font-size: 14px;
    color: #e74c3c;
  }

  .footer small{
    display: block;
    position: absolute;
    margin: 0 auto;
    margin-top: 40px;
    color: #323232;

  }
