body {
    background-color: #c4c4c4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0em;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    min-height: 100vh; /* Ensure body takes at least the full viewport height */
}
a {
    color: #4391bc;
    text-decoration: none;
    border-bottom: 1px solid #4391bc;
}
#header,
#footer {
    width: 100%;
    background-color: #000;
    margin: 0 auto;
}
#header_container,
#footer_container {
    display: flex;
    align-items: center;
    max-width: 1000px;
    gap: 10px;
    margin: auto;
    justify-content: space-between;
    align-items: center;
    height: 130px;
}
#footer_container {
    margin-top: auto;
}
#header_container a {
    border-bottom: none;
}
#footer {
    margin-top: 3em;
}
#header_nav {
    float: right;
    height: 100%;
    display: flex;
    align-items: center;
}
#header_nav a {
    color: white;
    text-decoration: none;
    padding: 1em;
}

#header_nav a.active {
    color: black;
    background-color: #fff;
    border-radius: 5px;
}

.container_full_width {
    margin: auto;
}
.container_max_width {
    max-width: 1000px;
}

.box {
    display: flex;
    gap: 2em;
    align-content: start;
    align-items: center;
    margin-top: 2em;
}
#docs .box {
    align-items: flex-start;
}
.box div {
    flex-grow: 1;
    flex-basis: 50%;
    max-width: 500px;
}
.button-box {
    flex-grow: 1;
    flex-basis: 25%;
    max-width: 250px;
    min-height: 6em;
    background: #fff;
    padding: 0.5em 1em;
    font-size: 2em;
    align-items: center;
    vertical-align: center;
    border-bottom: 10px solid #666;
    border-right: 10px solid #666;
}
@media (max-width: 800px) {
    .box {
        flex-direction: column;
    }
    .button-box {
        width: 250px;
    }
}
.button-box a {
    color: #000;
    text-decoration: none;
}

#index {
    margin-top: 4em;
}
h1,
#docs h2 {
    grid-column: span 4;
}
h1 {
    font-size: 4em;
}
#docs .three-col-span {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    flex-grow: 3;
    max-width: none;
    gap: 1em;
}
#docs .three-col {
    display: flex;
    align-items: start;
    gap: 1em;
    max-width: none;
}
#docs .three-col p {
    margin-top: 0;
    align-self: flex-end;
}
#docs .four-col-span {
    grid-column: span 4;
}
#docs .button-desc {
    font-weight: 600;
    flex-basis: 8em;
    flex-grow: 0;
    flex-shrink: 0;
}
#docs .button-block {
    display: flex;
    direction: row;
    align-items: center;
    align-content: center;
    height: 70px;
    gap: 0.5em;
}
#docs .button-block span {
    font-style: italic;
}
#docs .param-block img {
    float: left;
    margin: 0 1em 0.1em 0;
}
.half-width {
    grid-column: span 2;
}
h2 {
    font-weight: 900;
    font-size: 2em;
    margin-bottom: 0.1em;
}
h3 {
    font-weight: 700;
    font-size: 1.4em;
    margin-top: 0.1em;
}
h4 {
    font-weight: 200;
    font-size: 1.4em;
    margin-top: 0.1em;
}
#docs h4 {
    font-weight: 600;
    font-size: 1em;
    border-bottom: 1px dotted #000;
    margin-bottom: 0em;
}
.hero-description {
    grid-column: 1 / span 2;
}
.hero-image {
    grid-column: span 2;
}
.headline {
    grid-column: span 4;
}
ul {
    padding: 0;
    margin: 0;
    list-style-position: inside;
    list-style-type: none;
}
ul li {
    margin-bottom: 0.8em;
}
ul.social-media li {
    display: flex;
    align-items: center;
    gap: 10px;
}
