body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 2rem;
    background-color: #121212; /* Dark mode background */
    color: #e0e0e0; /* Light text color */
    text-align: center; /* Center the text */
}

header {
    background-color: #bb86fc; /* Pinkish-purple highlight */
    color: white;
    padding: 1rem 0;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #333;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

/* Responsive design for mobile devices */
@media (max-width: 600px) {
    body {
        padding: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    footer {
        padding: 0.5rem 0;
    }
}

