body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    margin: 0;
    font-family: 'Noto Nastaliq Urdu', serif;
    overflow: hidden;
}

.welcome-container {
    text-align: center;
}

.welcome-text {
    font-size: 3rem;
    color: #333;
    animation: slideIn 2s ease-in-out;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
