.button {
    padding: 5px 10px 4px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
    font-family: inherit;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    text-decoration: none;
    height: 50px;
    min-width: 165px;
    max-width: 100%;
    display: inline-block;
    display: flex;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.button:focus, .button:hover {
    background-color: transparent;
    color: var(--accent-color);
}