body {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f0f0f0;
    font-family: 'Vazirmatn', Arial, sans-serif;
    direction: rtl;
}

.content {
    text-align: center;
}

h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
}

p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
}

.instagram-links {
    display: flex;
    gap: 2rem; /* Space between the links */
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.instagram-link {
    text-align: center;
    text-decoration: none;
    color: #333;
    font-size: 1rem;
}

.instagram-logo {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.instagram-logo:hover {
    transform: scale(1.2);
}

.instagram-link span {
    display: block;
    margin-top: 0.5rem;
}

