.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 {
    display: inline-block;
    padding: 9.5px 32px;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    background-color: #824550;
    font-family: "caslons-egyptian", sans-serif;
}

.custom-button .button-link:hover {
    background-color: #824550;
}

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