*, body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
}

body {
    width: 100%;
    margin: 0 auto;
    color:#1F497D;
}

img {
    width: 100%;
}

/*********CONTAINER STYLES******/


.outer-container {
    margin: 0 auto;
    max-width: 1000px;
    padding: 5px;
}

.flex-container {
    display: flex;
    gap: 15px;

}

.card-container {
    padding: 2px 16px;
}

.container {
    display: flex;
    max-width: 1100px;
    justify-content: center;
    margin: auto;
}

.text-container {
    padding: 15px;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: auto;
}

/********Utility Styles********/


.accent {
    color: #d53b34;
}

.margin-btm {
    margin-bottom: 40px;
}

.center {
    justify-content: center;
}
/****** header *******/

.header { 
    margin-bottom: 40px;
    background-color:#063970;
}

.header-img {
    max-width: 1000px;
    display: block;
    margin: auto;
    margin-top: 10px;
}

.header-title { 
    color: #fff;
    text-align: center;
    font-size: 50px;
    padding: 10px;
}

.logo {
   width: 50px;
   display: block;
   margin-top: 20px;
}

.footer-logo {
    margin-top: 0px;
}

.subheading {
    color:#fff;
    text-align: center;
    font-size: small;
}


/***********btn styles************/


.btn {
    padding: 10px 20px;
    transition-duration: 0.4s;
    width: 300px;
    text-align: center;
}

.btn:hover {
    background-color: #1F497D;
    color:#fff;

}


.events-btn,
.home-btn {
    border:#063970 2px solid;
    text-transform: uppercase;
    background-color: #fff;
    font-family: inherit;
    border-radius: 5px;   
}



/********* Welcome Styles********/

h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

p {
    margin-bottom: 10px;
}


.title {
    font-size: 18px;
    margin-bottom: 10px;
}


/********* Who Styles*********/


.card {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    /* border-radius: 5px; 5px rounded corners */
}

/******************what styles*************/

.picture {
    width: 150%;
    display: block;
    margin-bottom: 20px;
    padding-right: 10px;
}

.roundtable-h3 {
    margin-bottom: 10px;
    padding: 5px;
}

.caption {
    text-align: center;
}

.text-box, .donation-text {
    text-align: justify;
}


/* Announcements*/

.graphic {
    padding: 10px;
    width: 80%;
    margin: auto;
}

/****************event styles*************/


.event-one, 
.event-two {
    width: 50%;
}

.event-h3 {
    text-align: center;
    font-size: 25px;
}

.events,
.home  {
    margin: 1em;
}


/*****************video Section********************/

.video-container {
    display: flex;
    flex-direction: row;
}

.video-one,
.video-two {
    padding: 10px;
}


/****************Donation Section*****************/

.address {
    text-align: center;
    margin-bottom: 20px;
}


/*********************Footer********************/

.footer {
    padding: 20px 5px;
    background-color:#063970;
    color:#fff;
    font: inherit;
    font-size: 14px;
    text-align: center;
}

.footer-boxes {
    display: flex;
    justify-content: space-between;
}

.icon {
    /* display: inline-block; */
    width: 30px;
    color:#fff;
}

span {
    font-weight: bold;
}

a {
    color: #fff;
}



a:link,
a:visited {
    color: #B06E22;
    text-decoration: none;
}

a:hover, a:active {
    color:#d53b34;
}

.subheading-footer {
    color:#fff;
    text-align: center;
    font-size: small;
    margin-top: 15px;
    display:block;
}
/********************Media Queries***************/

@media screen and (max-width: 800px) {
       .flex-container {
        flex-wrap: wrap;
        padding: 15px;
    }
        .header-title {
            font-size: 45;
        }

    h2, h3 {
        padding: 10px;
    }

    .donations {
        padding: 15px;
    }

    .logo {
        width: 30%;
        padding-left: 5px;
    }

    .event-one, 
    .event-two {
        width: 100%;
    }

}
    
