.button  {
    color: var(--anchor-color);
    font-family: "Orbitron", Arial, Tahoma, sans-serif;
    background: #3750a9;
    border: 2px solid #3750a9;
    border-radius: 25px;
    margin: 1em .5em 0;
    padding: .5em .75em;
    transition: all .25s ease-in-out;
    min-width: 150px;
    box-shadow: none;
    text-shadow: none;
}

.button:focus,
.button:hover {
    color: var(--anchor-hover);
    background: #3750a9;
    border: 2px solid #3750a9;
    transition: all .1s ease-in-out;
}
