/* Basic CSS template */
:root {
    --bg: white;
    --card: #ffffff;
    /* --accent: #8f7f78; */
    --accent: #0f172a;

    --text: #0f172a;
    --muted: #0f172a;
    --radius: 8px;
    --max-width: 1100px;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-size: 13px;
    font-weight: normal;
    font-family: Cousine, monospace;
    line-height: 1.9;
    font-style: normal;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}


.big-image{
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 2rem;
}

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2rem 0;
}

.responsive-image {
    max-width: 100%;
    height: auto;
    display: block;
}


.site-header .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
}

.logo {
    font-size: 13px;
    font-weight: normal;
    font-family: Cousine, monospace;
    line-height: 1.9;
    font-style: normal;
}

.logo a, .logo a:link, .logo a:visited, .logo a:active, .logo a:focus {
    color: inherit; /* keep same color for the anchor in all states */
    text-decoration: none; /* remove underline for the anchor in all states */
}

.site-nav {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.site-nav a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    padding: 4px 0;
}

.site-nav a:hover {
    color: var(--accent);
}

.site-nav a.nav-active {
    color: var(--accent);
    font-weight: 600;
}


.site-footer {
    padding: 18px 0;
    color: var(--muted);
    text-align: center;
    border-top: 1px solid rgba(15, 23, 42, 0.04);
}

/* On wider screens, keep header elements left-aligned but slightly larger spacing */
@media (min-width: 760px) {
    .site-header .container {
        padding: 18px 0;
    }

    .site-nav {

        flex-direction: row;
        gap: 286px;
        margin-top: 12px;
    }

    .site-nav a {
        padding: 6px 0;
    }
}