@font-face {
    font-family: 'zain';
    src: url("../Fonts/Zain-Black.ttf");
}
body,html,input,select{
    margin: 0px;
    padding: 0px;
    direction: rtl;
    font-family:'zain',sans-serif;
}
input:focus{
    outline: none;
}
a{
    color:white;
    text-decoration: none;
}

/* استایل برای h1 های صفحه اصلی */
body > h1 {
    display: inline-block;      /* کنار هم قرار گرفتن */
    margin: 2dvw;               /* فاصله بینشون */
    padding: 1dvw 3dvw;         /* فضای داخلی برای جذابیت */
    background: #ff8c21;        /* رنگ پس‌زمینه */
    color: white;               /* رنگ متن */
    border-radius: 1dvw;        /* گوشه‌های گرد */
    font-size: 3dvw;            /* اندازه متن */
    cursor: pointer;            /* وقتی موس روش میره */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3); /* سایه */
    transition: 0.3s;           /* انیمیشن نرم */
}

body > h1:hover {
    background: #ff9c33;        /* تغییر رنگ وقتی موس روشه */
    transform: translateY(-5px); /* کمی بلند شدن */
}
  
/* مرکز کردن کل h1 ها */
body {
    display: flex;
    justify-content: center; /* افقی */
    align-items: center;     /* عمودی */
    height: 100vh;           /* تمام ارتفاع صفحه */
    gap: 2dvw;               /* فاصله بین h1 ها */
}

.logout-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    background: #ff8c21;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}
.logout-btn:hover {
    background: #e67a15;
    transform: scale(1.05);
}
