/* Reset some default styling */
body, ul {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif; /* Adding a universal font */
}

/* Style the navigation bar */
nav {
    background-color: #333;
    overflow: hidden; /* Ensures the nav content is contained within the nav bar */
}

nav ul {
    list-style-type: none;
    text-align: center; /* Center the navigation items */
}

nav ul li {
    display: inline;
    margin: 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 8px 16px; /* Adding some padding for better touch targets */
    transition: color 0.3s; /* Smooth transition for hover effect */
}

nav ul li a:hover {
    color: #ddd; /* Hover effect for links */
}

/* Style the hero section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #eee;
    color: #333;
}

/* Style the other sections */
section {
    padding: 20px;
    margin: 10px 0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    nav ul li {
        display: block; /* Stack the nav items vertically on smaller screens */
        margin: 5px 0;
    }

    .hero {
        height: auto; /* Adjust hero height for smaller screens */
        padding: 20px;
    }
}

/* Style the footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Additional styling can be added below as needed */
