@font-face {
    font-family: 'Vazir-fa';
    src: url('./Vazir-FD-WOL.woff2') format('woff2'),
    url('./Vazir-FD-WOL.woff') format('woff'),
    url('./Vazir-FD-WOL.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: Vazir-fa, Arial, sans-serif;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    background-image: url("./bg.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: overlay;
}

.container {
    background-color: rgba(255, 255, 255, 0.96);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 80%;
    max-width: 400px;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .container {
        max-width: 550px;
        padding: 32px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 700px;
    }
}

.icons {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.icons a {
    display: inline-block;
}

.icons img {
    width: 48px;
    height: 48px;
    transition: transform 0.2s ease;
}

.icons img:hover {
    transform: scale(1.1);
}
