/*----------------------*/
.button {
    background-color: Silver;
    border: 3px inset #aaaaaa;
    border-radius: 8px;
    display: inline-block;
    margin: .5em;
    padding: .5em;
    font-weight: bold;
    text-align: center;
}

.button a:hover {
    text-decoration: none;
}

a.button:hover {
    text-decoration: none;
    background-color: #dddddd;
}

.button_line {
    display: table;
}
/* Use with button, as in class="button button_square" */
.button_narrow {
    padding: 1px 1em 1px 1em;
    font-size: 12px;
}
/* Use with button, as in class="button button_narrow" */
.button_square {
    border-radius: unset;
}
/* Use with button, as in class="button button_square" */
/*----------------------*/
a.button_side_by_side > div {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    max-width: 40em;
    width:auto;
}
    a.button_side_by_side blockquote {
        margin-top: 0;
        margin-bottom: 0;
    }
    a.button_side_by_side h2, a.button_side_by_side h3, a.button_side_by_side h4, a.button_side_by_side h5, a.button_side_by_side h6 {
        margin-top: 0;
        margin-bottom: 0;
    }
    a.button_side_by_side img {
        padding-right: .5em;
    }
    a.button_side_by_side p {
        text-align: left;
    }
/*----------------------*/
.gold_navy {
    background-color:gold;
    color:navy;
}
a.gold_navy:hover {
    background:linear-gradient(gold,yellow,gold);
    background-color:yellow;
}
a.gold_navy:visited {color: navy;}
/*----------------------*/
.white_green {
    background:linear-gradient(green,#009900,green);
    background-color: Green;
    color: white;
}
    .white_green h1, .white_green h2, .white_green h3, .white_green a {
        color: white;
    }
    a.white_green:hover {
        background: linear-gradient(#009900,#00bb00,#009900);
        background-color: lightgreen;
    }
a.white_green:visited {color: white;}
/*----------------------*/
.white_purple {
    background:linear-gradient(purple,mediumpurple,purple);
    background-color:purple;
    color: white;
}
    .white_purple h1, .white_purple h2, .white_purple h3, .white_purple a {
        color: white;
    }
a.white_purple:hover {
    background:linear-gradient(mediumpurple,palevioletred,mediumpurple);
    background-color:mediumpurple;
}
a.white_purple:visited {color: white;}
/*----------------------*/
