.button {
    margin-top: 1rem;
    padding: var(--padding-m);
    border: 1px solid rgb(126, 126, 126);
    background-color: white;
    color: black;
    text-decoration: none;
    border-radius: 1.5vw 0 1.5vw 0;
    text-transform: uppercase;
    cursor: pointer;
    user-select: none;
}

.button:hover {
    /* filter:invert(1); */
    background-color: black;
    color: white;
}

.hero-buttons a {
    font-size: 80%;
}

.explainer-read-more-button-container {
    text-align: right;
    margin-top: 3vh;
}

.cta .explainer-read-more-button-container {
    justify-content: center;
}

.news-archive-button {
    display: inline-block;

    border: 1px solid rgb(126, 126, 126);
    border-radius: 1.5vw 0 1.5vw 0;

    width: auto;
    color: inherit;
}

.news-archive-button:hover {
    background-color: black;
    /* background-color: var(--highlight-color); */
    color: white;
    /* text-decoration: underline; */
}




.navigation-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    /* line-height: 0; */

    font-size: 100%;
    border: 2px solid black;
    border-radius: 0.9vw 0 0.9vw 0;
    
    padding: var(--padding-m);

    background-color: white;
}

.navigation-icon:hover {
    background: black;
    /* background-color: var(--highlight-color); */
    
    color: white;
}

.navigation-icon h1 {
    font-size: var(--font-size-m);
    margin: 0;
    padding: 0;
    padding-bottom: 0.3rem;
    color: black;
}

.navigation-icon:hover h1 {
    color: white;
}

.mobile-menu-icon {
    position: absolute;
    right: 1rem;
    top: 1rem;
    z-index: 1001;
}

#scroll-to-top-icon {
    display: none;
    position: fixed;
    right: 1rem;
    bottom: 1rem;

    border: 2px solid black;
}


@media screen and (min-width: 900px) {

    .hero-buttons a,
    .hero-text a {
        font-size: 50%;
    }

}
