
body {
    margin: 0;
    box-sizing: border-box;
}

nav {
    width: 100%; 
}

.header {
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.1875em 0 1.25em 0;
    display: none;
    
}

.header a {
    text-decoration: none;
    color: #25281F;
}

.logo, #primaryLogo {
    color: #25281F;
    font-family: 'Domine', 'Georgia', 'serif';
    font-size: 2.25rem;
    font-weight: 700;
}

.ToggleIcon img {
    width: 35px;
    height: 35px;
}

.navContainer {
    width: 90%;
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.navigationIconsContainer {
    width: 100%;
    display: flex;
    gap: 1.875em;
    justify-content: right;
   
    margin-top: 2.0625em;
    margin-bottom: 2.0625em;
    list-style-type: none;
}

.icon {
    width: 50px;
    height: 50px;
}

.primaryNavigationContainer {
    width: 100%;
    display: flex;
    gap: 3.75em;
    justify-content: left;
    
    margin-top: 2.1875em;
    margin-bottom: 2.1875em;
    list-style-type: none;
    padding: 0;
}

.primaryNavigationContainer a {
    text-decoration: none;
    font-size: 1.5rem;
    font-family: 'Heebo', 'Arial', 'Sans Serif';
    font-weight: 400;
    color: #25281F;
    transition: 0.2s;
    
}

#activePage {
    font-weight: 600;
    border-bottom: 3px solid #25281F;
}



.primaryNavigationContainer a:hover {
    font-weight:500;
    cursor: pointer;
}

.hero {
    width: 90%;
    margin: 0 auto;
    background-image: url(../images/AboutBackground.JPG);
    background-color: #F3B56C;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 450px;
    margin-top: 1.875em;
}

.AboutMainContent {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4em;
    padding: 4em 0 4em 0;
}

.MainContentContainer {
    width: 90%;
    margin: 0 auto;
    background-color: #BBDDEC;
    max-width: 746px;
    padding: 4em 0 4em 0;
}

.aboutMeText {
    width: 80%;
    margin: 0 auto;
}

.aboutMeText h1 {
    margin-top: 0px;
    color:#25281F;
    font-family: 'Domine', 'Georgia', 'serif';
    font-size: 3rem;
    font-weight: 700;

}

.aboutMeText p {
    margin-bottom: 0px;
    color:#25281F;
    font-size: 1rem;
    font-family: 'Heebo', 'Arial', 'Sans Serif';
    font-weight: 400;
}

.aboutPageButtonContainer {
    margin: 0 auto;
}

.aboutPageButtonContainer a {
    text-decoration: none;
    color: #25281F;
}

.aboutPageButtonContainer button {
    font-family: 'Heebo', 'Arial', 'Sans Serif';
    font-size: 1.5rem;
    background-color: #F3B56C;
    border: 0;
    border-radius: 10px;
    padding: 0.5em 1.5em;
    transition: 02.s;
}

.aboutPageButtonContainer button:hover {
    font-weight: 500;
    cursor: pointer;
}

footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.875em;
    padding: 3.125em 0 2.1875em 0;
}

.footerIconsContainer {
    display: flex;
    gap: 1.875em;
    width: 100%;
    justify-content: center;
    text-decoration: none;
}



.copyrightTextContainer {
    display: flex;
    justify-content: center;
    font-family: 'Heebo', 'Arial', 'Sans Serif';
    font-size: 0.75rem;
    color: #25281F;
}

.copyrightTextContainer p {
    margin: 0;
}

@media only screen and (max-width: 800px) {
    .aboutPageButtonContainer {
        flex-direction: column;
        gap: 2.1875em;
    }
}

@media only screen and (max-width: 800px) {
    .header {
        display: flex;
    }

    .navContainer {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.875em;
        display: none;
    }

    #primaryLogo {
        display: none;
    }

    .navigationIconsContainer {
        justify-content: center;
        padding: 0;
        margin-top: 1.875em;
        margin-bottom: 0;
    }

    .primaryNavigationContainer {
        flex-direction: column;
        gap: 1.875em;
        align-items: center;
        margin: 0;
    }

    #crossIcon {
        display: none;
    }
}