/* General styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Navigation of pages */
header {
    display: flex; /* Uses flexbox to align children side by side */
    flex-wrap: wrap; /* Ensures elements wrap if needed */
    align-items: center; /* Vertically centers the children */
    padding: 10px 20px; /* Add padding for aesthetic spacing */
    background-color: white; /* Sets the background color of the header to white */
}

header nav ul {
    list-style: none; /* Removes bullet points from list */
    padding: 0; /* Removes default padding */
    margin: 0; /* Removes default margin */
    display: flex; /* Aligns the navigation items in a row */
    justify-content: space-around; /* Spaces out the navigation items */
    width: 100%; /* Ensures the navigation items take up full width */
}

header nav ul li {
    margin: 0 100px; /* Adds spacing between the links */
}

header nav ul li a {
    text-decoration: none; /* Removes underline from links */
    color: black; /* Sets the text color to black */
    font-size: 20px; /* Sets the font size */
    font-family: Arial, sans-serif; /* Uses Arial font, with sans-serif as a fallback */
    font-weight: bold; /* Makes the font bold */
    padding: 10px 15px; /* Adds padding around the links */
}

header #logo {
    height: 130px; /* Adjust image dimensions for the logo */
    width: 130px; /* Adjust image dimensions for the logo */
    margin-right: 20px; /* Adds space to the right of the logo */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header nav ul {
        flex-direction: column; /* Stacks navigation items vertically on smaller screens */
        align-items: center;
    }

    header nav ul li {
        margin: 10px 0; /* Adds spacing between the links vertically */
    }
}
