body, main, nav, header, h1, h2, p, ul {
    padding: 0;
    margin: 0;
}
body {
    font-family: Georgia,'Times New Roman', times, serif;
    background: #ffdeae;
    color: #805b2c;
    
}



/*layout*/
#layout{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    
}


/*styles for header*/
.logo {
    width: 8%;
    height: auto;
}
.header-content {
    background-color: #f5c494;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 12px;
    width: 100%;
    position:sticky;
}
/*styles for navigation*/
#navigation {
    background-color: #f5c494;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-bottom: auto;
    width: 10%;
    padding: 1em .5em 235px 16px;
    
}
.navItems {
    padding: 10px;
    border-top: solid #805b2c 1px;
}
nav a {
    color: #805b2c;
    text-decoration: none;
    font-family: Georgia,'Times New Roman', times, serif;
    font-weight: bold;
    font-size:1.5em;
    
}
nav a:hover{
    color:burlywood;
}


/*main content*/
.main-paragraph {
    width: 50%;
    height: auto;
    margin-bottom: 250px;
    font-size: 16pt;
}
#mainProducts {
    display: flex;
    flex-direction: row;
    margin-left: 15px;
    margin-top: auto;
}
#productImages{
    width:100px;
    height:auto;
}
.productDiv {
    background-color: #f5c494;
    padding: 16px;
    padding-bottom:30px;
    border-radius:8px;
    margin: 16px;
}


.section-image, .main-container {
    width: 100%;
}

.main-content-container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-container {
    display:flex;
    flex-direction:column;
}
.main-content-container {
    row-gap: 42px;
}
.main-content-title{
    text-align: center;
}
.main-images {
    width:250px;
    height:auto;
    max-height:25%;

}


footer p {
    color: #805b2c;
    text-align: center;
    padding: 8px 0;
    margin-top: 24px;
}

/* Tablet View */
@media screen and (min-width: 550px) and (max-width: 768px) {
    #layout {
        width: 100%;
        display: flex;
        flex-direction: column;
        column-gap: 1px;
        align-items: stretch;
    }

    #navigation {
        width: 100%;
        height: auto;
        padding: 1em .5em 0px 16px;
    }

    .main-container {
        display: flex;
        flex-direction: row;
    }

    .main-content-container {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
        margin: 0 16px;
    }

    .section-container {
        max-width: 300px
    }

    .header-content {
        position: static;
    }
}

    /* Mobile View */
    @media screen and (min-width: 100px) and (max-width: 500px) {
        .logo{
            width:25%;
        }
        #layout {
            width: 100%;
            display: flex;
            flex-direction: column;
            column-gap: 1px;
            align-items: stretch;
        }
        #faqParagraph{
            width:90%;
        }
        #navigation {
            width: 100%;
            height: auto;
            padding: 1em .5em 0px 16px;
        }

        .main-container {
            display: flex;
            flex-direction: row;
        }

        .main-content-container {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: center;
            width: auto;
            height: auto;
            gap: 16px;
            margin: 0 16px;
        }

        .main-images {
            max-width:100%;
            max-height: 100%;
        }

        .section-container {
            max-width: 300px
        }

        .header-content {
            position: static;
        }
        main p, h3, h4,.navItems {
            font-size: 70%;
        }
        #mainProducts{
            display: flex;
            flex-direction: column;
        }
        .productDiv{
            padding-right:260px;
        }
        #productMain {
            display: flex;
            flex-direction: column;
        }
    }

    /* Desktop View */
@media screen and (min-width: 769px) {
    nav ul {
        display: flex;
        flex-direction: row;
        column-gap: 1px;
        align-items: center;
    }

    .main-content-container {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        column-gap: 16px;
        margin: 0 16px;
    }
}
