body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

#logo {
    height: 100px; 
    vertical-align: middle;
    margin-right: 20px; /* Adds some space between the logo and the title */
}


header {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensure it stays above other content */
    background-color: #0082ca; /* Or any color you prefer */
    color: white;
    padding: 10px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    padding: 0;
}

section {
    margin: 2em 5%;
    padding: 1em;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h2 {
    color: #0082ca;
}

a {
    color: #fff;
}

a:hover {
    text-decoration: none;
}

footer {
    background-color: #0082ca;
    position: fixed;
    color: #fff;
    text-align: center;
    padding: 1em 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 20px; /* Set the height of your footer */
    line-height: 0px; /* Align text vertically */
}
