

html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    font-size: 20px; /* Set default font size */
}

p {
    
}


h1 {
    font-family: 'Graphik X Condensed', Arial, sans-serif;
    color: black;
    text-align: center;
    margin-top: 20px;
    font-size: 6vw;
    max-font-size: 300%;
}

.lets-keep-her-footer {
    font-family: 'Graphik X Condensed', Arial, sans-serif;
    color: white;
    text-align: center;
    margin-top: 20px;
    font-size: 5vw;
}

h2 {
    font-family: 'Graphik X Condensed', Arial, sans-serif;
    color: black;
    text-align: center;
    margin-top: 20px;
    font-size: 5vw;
}

a, a:visited {
    color: #CD2027;
    text-decoration: none;
}

.content {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}

@media screen and (max-width: 600px) {
    .content {
        width: 100%;
        padding: 10px;
    }
}

.head-wrapper {
    width: 100%;
    height: 100%;
    overflow-x: hidden;

}

.main-navigation {
    grid-column-start: 1;
    grid-column-end: span 2;
}

.separator {
    height: 20px;
    width: 100%;
    background-color: #1D458D;
}



.site-map {
    text-align: center;
    margin-top: 10px;
    font-weight: lighter;
}

.footer {
    background-color: #1D458D;
    margin: 0px;
    padding:20px;
    padding-bottom: 60px;;
    margin-block-start: 0px;
    margin-block-end: 0px;
    color: white;
    width: 100%;
    min-height: 80px;
}

.footer a {
    color: white;
    text-decoration: underline;
}

.footer-links {
    text-align: center;
    margin-top: 10px;
    font-weight: lighter;
}


.paid-disclosure {
    display: flex; 
    justify-content: center; 
    border: 1px solid white;
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
    width: fit-content;
    padding: 20px;
}

.subsection {
    margin-top:0.25vw;
    margin-left: 2vw;
}


.portrait { 
    max-width: 100%;
    height: auto;
    border-radius: 00%;
    border: 0px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.banner-image {
    max-width: 100%;
    height: auto;
    border-radius: 0px;
    border: 0px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


/****Navigation***/

/* Add a black background color to the top navigation */
.topnav {
  background-color: #FFFFFF;
  color:black;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add an active class to highlight the current page */
.topnav a.active {
  background-color: #CD2027;
  color: white;
}

.topnav a.dontate {
background-color: #1D458D;
  color: white;    
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}

.topnav .donate {

    display: block;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
  .topnav .donate {
    display: block !important;

  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}


    /* Banner container */
    .banner {
        display: flex;
        gap: 0px;
        padding: 0px;
        flex-direction: row; /* Horizontal by default */
        align-items: center;
        justify-content: center;
        _background-color: #4a90e2;
        color: white;
        padding: 0px;
        grid-column-start: 1;
        grid-column-end: span 2;
    }

        /* Banner items */
    .banner-item {
        _padding: 15px 25px;
        text-align: center;
    }
    .banner-item .item-1 {
        flex: 5.2; /* Takes 1 part of available space */
    }
    .banner-item .item-2 {
        flex: 2.3; /* Takes 1 part of available space */
    }

    .banner-item:nth-child(odd) {
        _background-color: rgba(255, 255, 255, 0.1);
    }

    /* Responsive: stack vertically on small screens */
    @media (max-width: 600px) {
        .banner {
            flex-direction: column; /* Switch to vertical */
        }
        .banner-item {
            width: 100%;
        }
    }

