/* Foundation */

    /* HTML */
    html {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        background-color: #faf7f2;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Body */
    body {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: 'Inter Tight', sans-serif;
        font-weight: 400;
        font-size: 14px;
        color: #1c2b1e;
        line-height: 1;
    }

    /* Header */
    header {
        width: 100%;
        padding: 20px 0;
        background-color: #1c2b1e;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    header a {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    header a img {
        max-width: 77%;
        height: auto;
        max-height: 150px;
    }

    /* Navigation */
    nav {
        width: 100%;
        height: 20px;
        background-color: #ede6db;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 0;
    }

    nav ul {
        list-style: none;
        display: flex;
        gap: 10px;
        padding: 10px 0;
        margin: 0;
    }

    nav ul li {
        display: inline;
        font-family: 'IBM Plex Mono', monospace;
        font-weight: 400;
        font-size: 20px;
    }

    nav ul li a {
        background-color: #1a6b6b;
        padding: 10px 20px;
        text-decoration: none;
        color: #faf7f2;
        transition: color 0.3s ease;
    }
    nav ul li a:hover {
        color: #1c2b1e;
    }

    /* Cards */
    .card {
        background-color: #ede6db;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }

    .card h1 {
        font-family: 'IBM Plex Mono', monospace;
        font-weight: 400;
        font-size: 28px;
        color: #1c2b1e;
        line-height: 1;
    }

    .card p {
        font-family: 'Inter Tight', sans-serif;
        font-weight: 400;
        font-size: 14px;
        color: #1c2b1e;
        line-height: 1;
    }

    /* Footer */
    footer {
        position: bottom;
        width: 100%;
        padding: 10px 0;
        background-color: #1c2b1e;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: auto;
    }

    footer p {
        font-family: 'Inter Tight', sans-serif;
        font-weight: 400;
        font-size: 12px;
        color: #faf7f2;
        line-height: 1;
        background-color: #1a6b6b;
        padding: 10px 50px;
        border-radius: 4px;
    }