.zwilling-button {
    all: initial;
    border-radius: 3px;
    padding: 12px 24px;
    color: white;
    font-size: 14px;
    font-family: "Futura Bold", sans-serif;
    text-transform: uppercase;
    transition: color ease-in 0.2s;
    transition: background-color ease-in 0.2s;
}

.zwilling-button.primary {
    background-color: #ee1c25;
}

.zwilling-button.secondary {
    background-color: black;
}

.zwilling-button.primary:hover {
    color: white;
    background-color: #d40009;
}

.zwilling-button.secondary:hover {
    color: rgb(222, 213, 213);
}
