.button {
    /*display: inline-block;*/
    z-index: 50;
    outline: none;
    cursor: pointer;
    font-size: 1.5vh;
    line-height: 1;
    border-radius: 3vh;
    transition-property: background-color, border-color, color, box-shadow, filter;
    transition-duration: .3s;
    border: 1px solid transparent;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    font-family: "MyGoodSansBold";
    text-align: center;
    padding: 1.5vh 1vh 1.5vh;
    color: var(--night-color);
    box-shadow: inset 0 0 0 2px var(--night-color);
    background-color: transparent;
}
.buttonHighlight {
    color: var(--gold-color);
    box-shadow: inset 0 0 0 2px var(--gold-color);
}
.button:hover {
    color: var(--cream-color);
    background-color: var(--night-color);
}
.buttonHighlight:hover {
    color: var(--cream-color);
    background-color: var(--gold-color);
}



@media all and (max-width:30em) {
    scrollButton1 {
        display: block;
        margin: 0.2em auto;
    }
}
.scrollButton {
    display: inline-block;
    z-index: 99;
    outline: none;
    cursor: pointer;
    font-size: 1vw;
    line-height: 1;
    border-radius: 500px;
    transition-property: background-color, border-color, color, box-shadow, filter;
    transition-duration: .3s;
    border: 1px solid transparent;
    letter-spacing: 2px;
    min-width: 160px;
    text-transform: uppercase;
    white-space: normal;
    font-weight: 700;
    text-align: center;
    /*padding: 16px 14px 18px;*/
    color: #0a0a0a;
    box-shadow: inset 0 0 0 2px #616467;
    /*background-color: transparent;*/
    background-color: rgba(200, 200, 200, 0.7);
    height: 3vh;
}
.scrollButton:hover {
    color: #fff;
    background-color: #616467;
}

@media all and (max-width: 768px) {
    .button {
        font-size: 1.2vh;
        padding: 1vh 0.6vh;
        letter-spacing: 0.5px;
        min-width: auto;
        max-width: none;
    }
}