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

body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 2rem;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    color: #0288d1;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #0288d1;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #0288d1; /* Keep the same color on hover */
    text-decoration: none; /* Remove underline on hover */
}

.container {
    max-width: 600px; /* Reduced max-width for better readability */
    margin: 0 auto;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
    border-radius: 8px;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 600px) {
    body {
        padding: 1rem;
    }

    .container {
        padding: 1rem;
    }

    h1, h2, h3 {
        font-size: 1.5rem;
    }

    p, a {
        font-size: 1rem;
    }
}