body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
}

header {
    display: block;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 1rem 2rem;
}

.logo img {
    max-width: 250px;
    height: auto;
    display: block;
}

.navbar {
    width: 100%; /* Full width */
    text-align: center;
    display: block;
    background-color: black; /* Change background to black */
}

.navbar ul {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Aligns menu items to the left */
    /* Remove 'justify-content: space-evenly;' if it exists */
    list-style-type: none; /* Removes bullet points */
}

/* Update to navbar list item styles */
.navbar li {
    padding: 10px 20px; /* Adjust padding for spacing */
    margin-right: 20px; /* Add right margin to each item */
}

/* Last item should not have a margin on the right to maintain alignment */
.navbar li:last-child {
    margin-right: 0;
}


.navbar a {
    text-decoration: none;
    color: white; /* Menu text color */
}

.toggle-button {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

@media (max-width: 600px) {
    .toggle-button {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .nav-links {
        display: none;
        width: 100%;
        text-align: left;
    }

    .nav-links li {
        display: block;
        margin: 0;
    }
}

section {
    padding: 20px;
    margin: 20px auto; /* Center the section */
    max-width: 800px; /* Adjust as needed */
    border-radius: 1px;
    /*box-shadow: 2px 2px 12px 0 rgba(255, 255, 255, 0.1);*/
}

.centered-list {
    list-style-type: none;  /* Removes the default bullet points */
    padding: 0;  /* Removes the default padding */
    margin: 0;  /* Centers the list by removing default margin */
    text-align: center;  /* Centers the text inside the list items */
}

.centered-list li {
    display: inline-block;  /* Displays list items inline but respects padding and margins */
    padding: 10px;  /* Adds some space around the list items */
    margin: 5px;  /* Adds some space between the list items */
}

footer {
    text-align: center;
    padding: 1rem 0;
    background-color: #111;
    color: #fff;
}

.image-container {
    text-align: center;
    margin-top: 20px;
}

img {
    max-width: 100%;
    height: auto;
    /*border: 2px solid #fff;
    border-radius: 8px; */
}

