body {
    margin: 0;
    font-family: 'Noto Naskh Arabic', serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    padding: 0 20px;
}

h1 {
    font-size: 4rem;
    color: #333;
    margin-bottom: 1rem;
}

a {
    font-size: 1.5rem;
    color: #007aff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
}
