/*
mlcstyle.css
Shared style sheet for the Madison Lions Club web site.
Last updated: 2026-07-04 John G Heim
*/

/* Default page appearance */
body {
    font-family: Arimo, Arial, Helvetica, sans-serif;
    background-color: white;
    color: black;
    line-height: 1.5;
}

/* Main page heading */

h1 {
    background-color: #c8a300;   /* Lions-style gold */
    color: #5a2d82;              /* Lions-style purple */
    padding: 0.6em;
    margin-top: 0;
    margin-bottom: 1em;
}

/* Images */

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Links */

a {
    color: #5a2d82;
}

a:hover,
a:focus {
    text-decoration: underline;
}

hr {
    border: 0;
    height: 2px;
    background-color: #D6AF36;   /* Lions gold */
    }

footer p {
    color: #4F2D7F;      /* Lions purple */
    text-align: center;
    font-size: 0.9em;
    margin: 0.5em 0;
}

