body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Styles for Navigation */
nav {
    background-color: #333;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Styles for Headers and Paragraphs */
h1, h2 {
    text-align: center;
    margin: 20px 0;
}

p {
    text-align: center;
    margin: 10px 20px;
}

/* Responsive styles */
@media (max-width: 600px) {
    nav ul {
        flex-direction: column; /* Stack navigation items vertically */
        align-items: center; /* Center navigation items */
    }

    nav ul li {
        margin: 10px 0; /* Add margin for spacing in stacked layout */
    }

    h1, h2 {
        font-size: 1.5em; /* Adjust font size for smaller screens */
    }

    p {
        font-size: 1em; /* Adjust font size for readability */
        margin: 10px 15px; /* Adjust margins to fit screen */
    }
}
