:root {
    --bg: #ffffff;
    --text: #1e1e1e;
    --muted: #a7a7ad;
    --panel:#fafafa;
    --shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

*, *::before, *::after { box-sizing: border-box; }
img,svg,video{max-width:100%;display:block;}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "ff-speak-web", sans-serif;
}

ul, ol { margin: 0; padding: 0; }

.container {
    padding: 2rem 3rem;
}

.section {
    padding: 10px 0;
}

#header {
    position: sticky;
    top: 0;
    z-index: 99;
    background-color: transparent;
    padding: 0 3rem;
    background-color:var(--bg);
}

.headercontainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    flex-direction: row;
    font-weight: 600;
}

.name {
    color: var(--muted);
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.2px;
    font-size: 1.5rem;
    transition: all 0.15s ease-in-out;
}

.name:hover{
    color:var(--text);
}
.name:active {
    color: var(--text);
}

.name.is-current{
    color: var(--text);
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 3rem;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.menu a {
    color: var(--muted);
    padding: 6px 8px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.15s ease-in-out;
}

.menu a:hover {
    color: var(--text);
}

.menu a:active {
    color: var(--text);
}

.menu a.is-current {
    color: var(--text);
}

.grid {
    display: grid;
    gap: 20px;
}

.site-footer {
    border-top: 1px solid #1d1f21;
    padding: 24px 0;
    color: var(--muted);
}

footer{
    padding: 3rem;
}

.footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between  ;
}


@media (max-width: 640px) {
    .header-inner {
        height: auto;
        padding: 12px 0;
        gap: 12px;
        flex-wrap: wrap;
    }
}