.custom-button {
    display: flex;
    margin-bottom: 15px;
}

.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: "Karla", sans-serif;
    display: inline-block;
    padding: 8px 32px;
    font-size: 1rem;
    color: #FFF;
    text-decoration: none;
    background-color: #126883;
}

.custom-button .button-link:hover {
    opacity: 0.9;
}

.custom-button .button-link:focus {
    outline: 1px dashed #353533;
}