body{
    margin: 0;
    padding: 0;
    border: 0;
    background-color: rgb(226, 222, 210);
    font-size: 12px;
    font-family: "Merriweather", serif;
}

.wrapper{
    /* border: 1px solid black; */
    margin: 0;
    padding: 0;
}


a{
    text-decoration: none;
    color: inherit;
}
a:visited{
    text-decoration: none;
    color: inherit;
}
a:active{
    text-decoration: none;
    color: inherit;
}


/* Header */

.header{
    background-image:url("../images/fb_am_2.jpg");
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 1250px;
    background-size: cover;
    padding: 0;
    /* filter: blur(8px); */
}

.headerContentBackdrop{
    height: 100%;
    backdrop-filter: blur(6px);
    width: 100%;
}

.headerContentWrapper{
    width:100%;
    /* border: 1px solid red; */
    /* padding-top: 150px; */ /*Original*/
    padding-top: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.headerContentHeader{
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    /* border: 2px solid green; */
}

.headerButtonWrapper{
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.headerButton{
    width: 175px;
    padding: 10px 20px 10px 20px;
    border-radius: 10px;
    background-color: #e6e6e6;
    text-align: center;
    margin: 10px;
    opacity: 0.66;
}

.headerButton:hover{
    background-color: #ffffff;
}

/* About */

.main{
    width: 100%;
    padding: 20px 0px 40px 0px;
} 

.mainCenterWrap{
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    /* border: 1px solid red; */
}


.about-box{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
}



.about-box-internal{
    /* border: 1px dotted yellowgreen; */
    padding: 10px;
}


/* Specifically for google maps embed */

.google-maps {
    position: relative;
    padding-bottom: 75%; 
    height: 0;
    overflow: hidden;
}

.google-maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}



/* Footer */


.footer{
    width: 100%;
    height: 250px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
}

.footer-content{
    width: 90%;
    max-width: 1000px; 
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
}


/* Defaults */

.align-center{
    text-align: center;
}

.default{
    width: 100%;
}

.white{
    color: #e6e6e6;
}

.black{
    color: #000;
}

.bg-dark{
    background-color: rgb(65, 65, 65);
}

.bg-white{
    background-color: #fcfcfc;
}

.fontx4{
    font-size: 4rem;
}

.fontx2{
    font-size: 2rem;
}

.fontx1-5{
    font-size: 1.5rem;
}

.fontx1{
    font-size: 1rem;
}

.center{
    width: 100%;
    text-align: center;
}

.pb-15{
    padding-bottom: 15px;
}

.p-10{
    padding: 10px;
}

.p-40{
    padding: 40px;
}

.m-40{
    margin: 40px;
}

.mt-10{
    margin-top: 10xp;
}

.mt-40{
    .margin-top: 40px;
}

.mb-40{
    margin-bottom: 40px;
}

.m-10{
    margin: 10px;
}

.smallHeaderText{
    font-size: 1.2rem;
    font-weight: bold;
}

.width-half{
    width: 48%;
}
.width-third{
    width: 31%;
}
.width-two-thirds{
    width: 63%;
}

.width-full{
    width: 95%;
}



@media only screen and (max-width: 600px) {
    .about-box {
      flex-direction: column;
    }

    .about-box-internal{
        width: 100%;
    }

    .headerContentHeader{
        width: 98%;
    }

    .headerContentWrapper{
        /* padding-top: 90px;  */ /* Original */
        padding-top: 200px;;
    }

    .header{
        height: 1000px;
    }

    .headerButtonWrapper{
        flex-direction: column;
        justify-content: center;
        width: 100%;
        max-width: 230px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .fontx2{
        font-size: 1.5rem;
    }

  }
