@import url("https://fonts.googleapis.com/css2?family=vazirmatn:wght@300;400;600;700&display=swap");
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family:"vazirmatn" sans-serif;
    background: #0f0f0f;
    color: #ffffff;
    line-height: 2;
}
.hero{
    text-align: center;
    padding: 60px 20px;
    background: (linear-gradient 
    180deg
    #111111
    #000000;)
}
.profile-img{
width: 400px;
max-width:400px;
height: auto;
object-fit: contain;
border-radius: 50%;
border: 4px solid #d4af37;
margin-bottom: 20px;
box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
display: block;

}
.btn{
    display: inline-block;
    margin-top: 25px ;
    padding: 12px 30px;
    background: #d4af37;
    color: #000000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
}
.btn:hover{
    opacity: 0.9;
}
.card{
    background: #181818;
    border: 1px solid #d4af37;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    transition: 0.3s;
}
.card:hover{
    transform: translateY(-5px);
}
.card::before{
    content: "\2713";
    color: #d4af37;
    font-size: 18px;
    font-weight: bold;
    margin-left: 19px;
}
a{
    color: #d4af37;
}
footer{
    text-align: center;
    padding: 30px;
    border-top: 1px solid #333333;
}
