*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'Figtree';
    src: url('./fonts/static/Figtree-Medium.ttf') format('woff2'),
         url('./fonts/static/Figtree-ExtraBold.ttf') format('woff');
    font-weight: normal;
    font-style: normal;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4d04e;
    position: relative;
    overflow: hidden;
    font-family: 'Figtree';
    font-style: normal !important

}
.card{
    background-color: #ffffff;
    border: 1px solid #3333;
    border-radius: 15px;
    width: 380px;
    height: 500px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 128, 0, 0.2);
    padding: 20px;
    box-shadow: 10px 10px 0px rgb(0, 0, 0); 
    border: 1px solid #111;
}
.card img{
   
    border-radius: 20px;
}
.card button{
    background-color: rgb(238, 196, 45);
    padding: 5px 10px;
    width: 80px;
    margin-top: 15px;
    font-family: 'Figtree', sans-serif;
    font-weight: 900; 
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.card h5, h2 ,p {
    margin-top: 20px;
}
.card h2{
    color: rgb(202, 165, 3);
    font-family: 'Figtree', sans-serif;
    font-weight: 900; 
    cursor: pointer;
}
.card p{
    font-size: 15px;
    color: #686767e3;
}
.Userinfo {
    margin-top: 25px;
    display: flex;
    align-items: center; /* تراز وسط از نظر بالا و پایین */
    gap: 10px; /* فاصله بین تصویر و متن */
}

.Userinfo img {
    width: 30px; /* اندازه دلخواه */
    height: 30px; /* اندازه دلخواه */
    border-radius: 50%; /* برای گرد کردن تصویر */
}

.Author {
    font-size: 14px; /* اندازه دلخواه متن */
    font-weight: bold;
}