*{
    margin: 0;
    padding: 0;
    font-family: "Montserrat";
}

@font-face{
    font-family: Grogie;
    src: url('Grogie.woff');
}

html{
    font-size: 16px;
}

body{
    min-width: 900px;
}

header{
   background-color: #F5F0EA;
   position: fixed;
   display: flex;
   justify-content: space-between;
   width: 100%;
   z-index: 4;
   top: 0;
   padding:10px 30px;
   border-bottom: 1px solid white;

}

header #logo_link{
    width: 30%;
    max-width: 300px;
}

img{
    object-fit: contain;
}

header #logo_link img{
    min-width: 230px;
    height: auto;
}

header img{
    width: 100%;
    height: fit-content;
}

header nav{
    margin-right: 90px;
    width: 40%;
    flex-shrink: 2;
    color:#40352B;
    font-weight:400;
    display: flex;
    align-items: center;
}

header nav ul{
    width: 100%;
    display: flex;
    justify-content: space-around;
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
    background-color: #F5F0EA;
}

header nav ul li{
    padding: 10px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05rem;
    color:#40352B;
}

header nav ul li a{
    color:#40352B;
    text-decoration: none;
}

#current_page{
    text-decoration: underline;
    color:#40352B;
}



.body{
    width: 100%;
    background-color: white;
    padding-top: 130px;
    display: flex;
    justify-items: center;
    flex-direction: column;
}

.body .inner{
    display: flex;
    flex-direction: column;
    height: fit-content;
    align-self: center;
}

.body .container{
    display: flex;
    flex-direction: row;
    justify-self: center;
    margin: 0 auto;
    margin-bottom: 50px;
    border: 30px solid #F5F0EA;
}

.body .container img{
    width: 250px;
    height: auto;
    object-fit: contain;
}

.body h2{
    font-weight: 500;
    color: #40352B;
    font-size: 2.5rem;
    width: 700px;
    align-self: center;
    text-align: center;
    letter-spacing: 1.3px;
    margin-bottom: 30px;
}

#h22{
    font-size:2.3rem;
}

.body p{

    color:#40352B;
    width: 600px;
    margin: 0 auto;
    padding: 15px 20px;
    font-size: 1.3rem;
    text-align: center;
}

#list{
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    margin-bottom: 50px;
    width: 80%;
    background-color: #E3D9CF;
}

#list h2{
    margin: 0;
    padding: 20px;
    background-color: #B2A69A;
    color:#F5F0EA;
    font-weight: 700;
}

#list ul{
    background-color: #F5F0EA;
    padding: 20px;
    padding-left:35px;
    color:#40352B;
    font-size: 1.2rem;
}

#list li{
    padding:10px;
    padding-left: 0;
}

.image-container{
    position: relative;
    width: 800px;
    height: 500px;
    margin: 0 auto;
    margin-bottom: 80px;
    overflow: hidden;
    border: 30px solid #E3D9CF;
}

.image-container img{
    width: 100%;
    overflow: hidden;
}

#nutritional{
    position: absolute;
    top: 0;
    left: 0;
    width: 800px;
    height: 500px;
    background-color: rgba(40,35,43,0.7);
}

#nutritional h2{
    color: #F5F0EA;
    font-weight: bold;
    margin: 0 auto;
    margin-top: 20px;
}

#nutritional p{
    font-weight: 500;
    color: #F5F0EA;
    width: 695px;
    margin: 0 auto;
}

h1{
    color:#40352B;
    font-size: 2.7rem;
    font-weight: 500;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 50px;
    text-align: center;
}

#symptoms{
    width:80%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    margin-bottom: 50px;
    padding: 15px 0;
    background-color: #E3D9CF;
}

.symptom-row{
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 15px auto;
    background-color: white;
}

h3{
    width: 250px;
    text-align: center;
    align-self: center;
    padding: 10px;
    font-weight: 400;
}

footer{
    position: relative;
    margin-top: -20px;
    background-color: #40352B;
    margin-top: 0;
    display: flex;
    justify-content: space-between;
    padding-left: 30px;
}

#footleft{
    width:35%;
    padding: 0;
    display: flex;
    align-items: center;
}

#footlogo{
    margin: auto auto;
    width: 100%;
    max-width:350px;
    min-width: 300px;
}

#footlogo img{
    width: 100%;
}

#footcenter{
    color:#F5F0EA;
    display: flex;
    justify-items: center;
    align-items: center;
    width:30%;
}

#footcenter .container{
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

#footcenter p{
    text-align: center;
    padding: 5px;
}

#footcenter a{
    color:#F5F0EA
}

#footcenter .socials{
    display: flex;
    justify-content: center;
}

#footcenter .socials a{
    margin: 0 7px;
    text-decoration: none;
}

footer nav{
    height: 100%;
    display: flex;
    margin: auto 0;
    width:35%;
    justify-content: center;
}

footer nav ul{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-content: space-around;
    list-style: none;
}

footer nav ul li{
    color:#F5F0EA;
    font-weight: 500;
    letter-spacing: 0.05rem;
    padding: 20px 0;
    margin: 0 auto;
}

footer nav ul li a{
    color:#F5F0EA;
    text-decoration: none;
}

footer nav ul li #current_page2{
    color: #F5F0EA;
    text-decoration: underline;
}
