/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Site-wide background color */
body {
    background-color: #f0f0f0; /* Light grey background */
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-height: 100vh;
    margin: 0; /* Ensure there's no margin around the body */
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Header styling */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #004c8c; /* Dark blue background */
    padding: 0px 10px;
    color: white;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.logo-container {
    flex-shrink: 0;
}

.logo {
    height: 20px; /* Adjust the size as needed */
    margin-top: 5px;;
}

.site-navigation ul {
    list-style: none;
    display: flex;
    gap: 10px;
}

.site-navigation a {
    color: white; /* White text for links */
    text-decoration: none;
    font-size: 0.8em;
}

.site-navigation a:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Custom styles for <h1> */
h1 {
    font-size: 1.5em; /* Adjust the font size */
    color: #004c8c; /* Dark blue text color */
    text-align: center; /* Center the text */
    margin: 20px 0; /* Margin for spacing */
    font-family: 'Arial', sans-serif; /* Font family */
}

/* Main content area */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Content area */
.content {
    font-size: 0.5em;
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
}



/* Footer styling */
.site-footer {
    font-size: 0.8em;
    background-color: #004c8c; /* Dark blue background */
    color: white;
    text-align: center;
    padding: 5px 10px;
}