.custom-button {
    display: flex;
}

.custom-button.align-left {
    justify-content: flex-start;
}

.custom-button.align-center {
    justify-content: center;
}

.custom-button.align-right {
    justify-content: flex-end;
}

.custom-button .button-link {
    font-family: "Metric";
    font-weight: 600;
    font-style: normal;
    font-size: 22px;
    text-transform: uppercase;
    line-height: 1em;
    letter-spacing: 0.1em;
    color: var(--Sunshine);
    background-color: var(--Savannah);
    padding: 15px 25px;
    transform: rotateZ(-2deg);
    position: relative;
    clip-path: polygon(100% 0, 98.5% 50%, 100% 100%, 0 100%, 1.5% 50%, 0% 0%);
    margin-bottom: 40px;
}

.custom-button .button-link:hover {
    background-color: var(--Savannah);
}

.custom-button .button-link:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #203f99;
    outline: none;
}