/* colors #6E8991-(blue) #91766E-(light red)*/

.wrapper {
    text-align: center;
    background-color: #6E8991;
    /* margin-left: 25%; */
    margin-top: 2em;
}

body {
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.5em;
    background-image: url("../images/background.jpg");
}

.heading {
    font-family: 'Times New Roman', Times, serif;
    font-size: 2em;
    font-weight: bold;
}

h1, h2 {
    font-family: 'Times New Roman', Times, serif;
}

.navmenu {
    text-align: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 25%;
    background-color: white;
    float: left;
}

.navlist a {
    display: block;
    padding: 1.5em;
    text-decoration: none;
}

.navlist a.active {
    background-color: #6E8991;
    color: white;
}

.navlist a:hover:not(.active) {
    transition: .7s;
    font-size: 1.1em;
    background-color: #cecece;
    color: black;
}

.navlist a.active:hover {
    background-color: #5e7382;
    color: white;
}

.navlist a:active {
    box-shadow: 0 .25vw #999999, 0 -.2vw #999999;
    transform: translateY(.2vw);
}

#donateform {
    margin-left: 5%;
    margin-right: 5%;
}

img {
    height: auto; width: 15vw;
}

.d-flex {
    justify-content: center;
}

/*.navlist {
    display: inline;
    list-style-type: none;
    padding-left: 1em;
}

a:link {
    color: #146077;
    text-decoration: none;
}

a:visited {
    color: #775f58;
    text-decoration: none;
}

a:hover {
    color: white;
    text-decoration: underline;
}

a:active {
    color: red;
    text-decoration: none;
}*/

.fa:visited {
    color: black;
}

.noBullet {
    list-style-type: none;
}

#listItalic {
    font-style: italic;
}

.headingright {
    text-align: right;
    float: right;
}

.headingleft {
    text-align: left;
}

table {
    clear: both;
    table-layout: fixed;
}

th, td {
    padding-right: 20em;
    padding-bottom: 1em;
}

th {
    text-align: center;
}

.w3-table th {
    text-align: center;
    padding: 0%;
    padding-right: 1em;
    padding-left: 1em;
}

.w3-container {
    margin-left: 1em;
    margin-right: 1em;
}

.noShow {
    display: none;
}

.Show {
    display: initial;
}

.footer {
    background-color: #91766E;
    font-family: 'Times New Roman', Times, serif;
    font-size: 1em;
}

@media screen and (max-width: 880px) {
    /* nav {
        overflow: hidden;
        background-color: #6E8991;
    } */

    .navmenu {
        clear: left;
        width: 100%;
    }

    .navlist {
        float: left;
    }

    .navlist a {
        display: block;
        text-align: center;
        padding: 1em;
        font-size: 1.5em;
        text-decoration: none;
    }

    .wrapper {
        margin-left: 0;
        padding-top: 2em;
    }

    .d-flex {
        flex-direction: column;
        align-items: center;
    }
}

@media print {
    nav, .navmenu {
        display: none;
    }

    .wrapper {
        margin-left: 0;
    }
}