
body{
font-family: Arial, Helvetica, sans-serif;
}
#top{
    text-align: center;


}
#logo a{
    text-decoration: none;
    color: black;
}


#image img{
    width: 100%;
    margin-top: 16px;
    margin-bottom: 16px;
}
#main {
    max-width: 800px;
    margin: auto;
    text-align: center;
}
#Shop{
    padding: 35px;
    filter: drop-shadow(3px 3px 3px rgb(107, 102, 102));
    margin: 15px;

}

#Shop img{
    width: 60%;
}
#Shop h3,h2{
    color: red;
}
#Product3,#Product2,#Product1{
    box-shadow: 800px;
    margin: 10px;
}
#Shop a{
    text-decoration: none;
}
#main h2 {
  color: rgb(13, 36, 8);
  font-size: xx-large;
  font-weight: 900px;
}
#main h4{
    font-size: xx-large;
    font-weight: 900;
}
nav{
    min-height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(42,42,42);
    color: white;
}
.nav_logo{
    margin: 20px;
    font-size: 30px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-style: italic;
}
nav ul{
    display: flex;
}
nav ul li{
    height: 100%;
    padding: 30px;
    list-style-type: none;
    border-bottom: 4px solid rgb(42,42,42);
}
nav ul li:hover{
    border-bottom: 4px solid rgb(9, 107, 30);
}
nav ul li a{
    color: white;
    text-decoration: none;
    font-size: 22px;
    font-family: sans-serif;
}

.toggle-button{
    position: absolute;
    top: 25px;
    right: 25px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 23px;
}

.toggle-button .bar{
    height: 4px;
    width: 100%;
    background-color: white;
    border-radius: 100px;
}

@media(max-width:750px){
    .list-container{
        display: none;
        width: 100%;
    }
    .toggle-button{
        display: flex;
    }
    nav{
        flex-direction: column;
        align-items: flex-start;
    }
    .list-container ul{
        flex-direction: column;
        width: 100%;
    }
    .list-container li{
        text-align: center;
    }

    .list-container.active{
        display: flex;
    }
}
#login{
    text-align: center;
    border: 5px black;
    padding: 20px;
    margin: auto;


}