body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #2980b9;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    /* Ensure header is above other content */
}


a {
    text-decoration: none;
    /* Remove underline */
    color: inherit;
    /* Inherit color from parent */
}

a:hover,
a:active {
    color: inherit;
    /* Keep color the same on hover and active */
}

header h1 {
    margin: 0;
}

nav ul {
    list-style-type: none;
    /* Remove bullet points */
    padding: 0;
}

nav {
    margin-top: 85px;
}

nav ul li {
    display: inline-block;
    /* Display list items horizontally */
    margin-right: 10px;
    /* Add spacing between list items */
    background-color: #f0f0f0;
    /* Background color for list items */
    padding: 5px 10px;
    /* Padding inside each list item */
    border-radius: 5px;
    /* Rounded corners */
}

nav ul li a {
    text-decoration: none;
    /* Remove underline */
    color: #333;
    /* Text color for links */
}

nav ul li:hover {
    background-color: #ddd;
    /* Background color on hover */
}

main {
    padding: 20px;
}

p a {
    color: blue;
    /* Text color for links */
    text-decoration: underline;
    /* Underline links */
}

p a:hover {
    color: darkblue;
    /* Change text color on hover */
}



footer {
    position: fixed;
    /* Fix the footer to the bottom of the viewport */
    bottom: 0;
    /* Align the footer to the bottom */
    width: 100%;
    /* Full width */
    background-color: #f5f5f5;
    /* Background color */
    padding: 10px;
    /* Add some padding */
    text-align: center;
    /* Align content to the center */
}