@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@500;700&display=swap');

body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #a8e063, #56ab2f);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Vazirmatn', sans-serif;
    color: #fff;
}

.container {
    width:80%;
    margin:auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 24px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.logo {
    width: 256px;
    height:256px;
    border-radius:24px;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.menu-link {
    display: inline-block;
    padding: 12px 25px;
    background-color: #2f9e44;
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.menu-link:hover {
    background-color: #238636;
    transform: translateY(-2px);
}
