* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #915C76; 
    font-family: Lato, Helvetica, Arial, sans-serif; 
    line-height: 1.6;
}

header {
    background-color: #29838B;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    position: relative;
}

header img {
    width: 75%;
    padding: 2em;
}



.menu-toggle {
    display: none;
    background-color: #EAD53C;
    color: #fff;
    padding: 1rem;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
}

nav {
    background-color: #000000;
}

nav .menu {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
}

nav .menu li {
    margin: 0 15px;
    list-style-type: none;
}

nav .menu li a {
    color: #fff;
    text-decoration: none;
    padding: 1rem;
    display: block;
}

nav .menu li a:hover {
    color: #EAD53C;
    background-color: #915C76;
}



div#content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    margin: 0px;
}

.column {
    padding: 20px;
}

#left-column {
    background-color: #ffffff;
    flex: 2;
}

#right-column {
    background-color: #ffffff;
    flex: 1;
}

p#overview {
    padding-bottom: 1em;
    font-size: 1em;
}

p#mission {
    font-size: 0.85em;
}

main.container div p {
    padding-bottom: 1em;
}

main.container div blockquote {
    margin-bottom: 1em;
}


/* Responsive layout for the navigation menu */
@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        display: none;
    }
    
    .menu li {
        text-align: center;
        margin: 0;
    }

    .menu-toggle {
        display: block;
    }
}

/* Ensure columns stack with right column on top on smaller screens */
@media (max-width: 600px) {
    .container {
        flex-direction: column-reverse;
    }

    .column {
        flex: 100%;
    }
}


div#getactive {
    padding: 1em;
    margin-bottom: 2em;
}

div#getactive table tr th {
    font-weight: 600;
    font-size: 1.4em;;
    color: #29838B;
    padding-bottom: 0.25em;
}

div#getactive table tr td {
    padding-top: 1em;
    text-align: center;
}





form#donatebox {
    width: 100%; 
    background-color: #F9F398; 
    padding: 10px; 
    text-align: center;
    margin-bottom: 2em; 
  }

p a.donateother {
    color: #ED4792;
    font-size: 0.85em;
}

h3.donate-header {
    color: #ED4792;
    text-align: center;
    font-weight: 600;
    font-size: 1em;
}

ul li {
    list-style-position: inside;
    list-style-type: circle;
}

ul li::marker {
    color: #ED4792;

}


table {
    width: 100%;
    border-collapse: collapse;
}
td {
    text-align: center; /* Horizontally center align text and images */
    vertical-align: middle; /* Vertically center align text and images */
    height: 100px; /* Example height to demonstrate vertical alignment */
}
img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

bento-inline-gallery {
    background-color: #ccc;
    height: 100%;
}

bento-base-carousel {
    display: block;
    overflow: hidden;
    position: relative;
    height: 100px;
}



footer {
    background-color: #F4C3C8;
    text-align: center;
    padding: 1rem 0;
    margin: 0px; 
}

footer p {
    font-size: 0.85em;
}

p#footer-tagline {
    font-style: italic;
}

p#footer-copyright {
    color: #ED4792;
}

div.donate-option {
    padding: 1.5em 0em 0em 0em;
}

blockquote {
    padding: 1em;
    background-color: #F9F398;
}

.green { color: #29838B; }
.pink { color: #ED4792; }
.pinklite { color: #F4C3C8; }
.mustard { color: #EAD53C; }
.beige { color: #F9F398; }