header {
    overflow: auto;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.7em;
}

header input,
#menu_button {
    display: none;
}

#home {
    float: left;
    padding-top: 0.5em;
    padding-left: 1em;
    margin-top: -0.3em;
    margin-bottom: 0.5em;
}

#home_1 {
    font-size: 130%;
}

#home_2 {
    width: 0.12em;
    height: 4em;
}

header nav {
    text-align: right;
    padding: 0 1rem;
    margin-top: 1.8rem;
}

header nav span.slash {
    background-color: var(--green);
    height: 1.7rem;
    width: 0.2rem;
    display: inline-block;
    transform: skewX(-32.6deg);
    vertical-align: middle;
    margin-left: 0.7rem;
    margin-top: -0.2rem;
}

header nav ul {
    margin: 0;
    padding: 0;
}

header nav li {
    display: inline-block;
}

header nav a,
header nav span.menu_open {
    display: inline-block;
    padding: 0.8rem;
}

header nav a {
    color: var(--blue);
}

header nav span.menu_open {
    color: var(--green);
}

#logo {
    width: var(--logo-width);
    height: var(--logo-height);
    float: right;
    margin: 0;
    margin-top: 0.2rem;
}

#topical {
    margin: 1rem 1.6rem;
}

:root {
    --splash-image-height: 810px;
}

#splash_wrapper {
    height: var(--splash-image-height);
    background-image: url("/static/frontpage/desktop-2.webp");
    background-position: center;
}

#splash_box {
    padding: 1rem 2rem;
    margin-left: 2rem;
    margin-top: calc(var(--splash-image-height) - var(--splash-box-height) - 4rem);
}

.image_stripe {
    display: flex;
    justify-content: center;
    gap: 10px;
    height: 210px;
    margin-top: 10px;
    max-width: 100vw;
}

.image_stripe img {
    transition: 0.3s ease;
}

.image_stripe img:hover {
    transform: scale(1.02);
    filter: brightness(1.05);
    z-index: 2;
    position: relative;
}
