/* BUTTONS */

a.button,
.button {
    height: fit-content;
    min-width: 150px;
    padding: .75em 1.5em;
    display: inline-block;
    font-family: var(--ff-primary);
    font-style: normal;
    font-weight: 600;
    font-size: 0.75rem;
    line-height: 1.125em;
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--c-brand-black);
    background-color: var(--c-brand-yellow);
    border: 4px solid var(--c-brand-yellow);
    transition: .5s background-color, .5s border-color;
    box-sizing: border-box;
    align-self: start;
}

.button:hover,
.button:active,
.button:focus {
    background-color: white;
}

a.button--secondary,
.button--secondary {
    background-color: white;
    border-color: white;
}

.button--secondary:hover,
.button--secondary:active,
.button--secondary:focus {
    border-color: var(--c-brand-black);
}

@media (max-width: 425px) {

    a.button,
    .button {
        align-self: normal;
    }
}