html, body {
    background: white;
    font-family: Graphik,-apple-system,BlinkMacSystemFont,Segoe UI,sans-serif;
    font-size: 16px;
    color: #393939;
    line-height: 1.68421;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.header-logo-wrapper {
    width: 100%;
    display: flex;
    padding-top: 18px;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 18px;
}

.header-logo {
    height: 39px;
}

.header-nav {
    margin-top: 28px;
    margin-bottom: 18px;
}

.header-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding-inline-start: 0;
}

.header-nav li {
    list-style: none;
}

.header-nav a {
    margin-left: 12px;
    margin-right: 12px;
}

.header-nav a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.header-nav a:hover {
    color: #0366d6;
}

.header-nav a.active {
    color: #0366d6;
}

/* Nested menu (dropdown) styles */
.header-nav > ul > li {
    position: relative;
}

.header-nav > ul > li:has(> ul) > a::after {
    content: " v";
    font-size: 0.7em;
    margin-left: 4px;
    vertical-align: middle;
    position: relative;
    top: -0.15em;
}

.header-nav li > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0;
    padding-inline-start: 0;
    background: white;
    border: 1px solid #ededed;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    min-width: 150px;
    z-index: 100;
}

.header-nav li:hover > ul {
    display: flex;
}

.header-nav li > ul > li {
    padding: 8px 12px;
    white-space: nowrap;
}

.content {
    max-width: 790px;
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 3rem;
}

.content img {
    max-width: 100%;
}

.content a {
    color: #0366d6;
}

.content a:hover {
    color: #2f5aae;
}

h1 {
    margin-top: 42px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ededed;
}