html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color: #F0F4F8;
    color: #2C3E50;
    display: flex;
    flex-direction: column;
}


/* Header */
.header {
    background-color: #203263;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    box-sizing: border-box;
    z-index: 1000;
}

.logo img {
    height: 80px;
}

.header-spacer {
    margin-top: 104px;
}

/* Navigation */
.nav-links {
    display: flex;
}

.nav-links a {
    margin-left: 20px;
    text-decoration: none;
    color: white; /* Secondary Text */
    font-weight: bold;
}

.nav-links a:hover {
    color: #00A3A8; /* Accent */
    text-decoration: underline;
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

/* Mobile styles */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: white;
        border: 1px solid #ddd;
        padding: 10px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-links a {
        color: #2C3E50; /* Secondary Text */
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }


    .logo img {
        height: 50px;
    }

    .header-spacer {
        margin-top: 74px;
    }
}

/* Content */
.content {
    flex: 1;
    font-size: 1.2rem;
}

.content h1 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.content h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
}


/* Footer */
.footer {
    background-color: #203263;
    padding: 15px 20px;
    color: white;
}

.footer-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-logo img {
    height: 60px;
}

/*Grid*/
.grid-container {
    max-width: 900px;   /* Sets the maximum width of the container */
    margin: 0 auto;     /* This is the magic that centers the block */
    padding: 0 2rem;
}

