/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    margin: 0; /* Reset body margin */
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Make sure the body takes at least the full viewport height */
}

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

header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

.section {
    padding: 30px 0;
    text-align: center;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    
    /* Sticky footer properties */
    margin-top: auto; /* Push the footer to the bottom of the container */
    flex-shrink: 0; /* Prevent the footer from shrinking */
}

.centered-list {
    text-align: center; /* Center-align the list items */
    list-style-type: none; /* Remove default bullet points */
    padding: 0; /* Remove default padding */
}

.centered-list li {
    display: inline-block; /* Display list items in a row */
    margin: 0 10px; /* Add some spacing between list items */
}