section-button {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    max-width: var(--content-width);
    width: 720px;
}

section-button a {
    appearance: none;
    text-decoration: none;
    color: var(--color-primary);
    background: transparent;
    border: 1px solid var(--color-primary);
    padding: 16px 32px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

section-button a:hover {
    background-color: var(--color-primary);
    color: #fafafa;
}