body,h1,ul,li{
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: soehne;
    src: url(fonts/test-founders-grotesk-regular.woff2);
}

body{
    background-color: white;
    font-family: soehne;
}   

section{
    width: 85%;
    margin: 50px auto;

}

section h1{
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 2em;
}

ul{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    border-bottom: 2px solid rgb(199, 185, 137);
    padding-bottom: 10px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

ul li{
    list-style: none;
    background-color: rgb(199, 185, 137);
    padding: 5px 10px;
    margin: 0 10px;
    cursor: pointer;
    font-size: 1.2rem;
}

ul li.active{
    background-color: rgb(126, 115, 78);
}

.product{
    width: 100%;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.product img{
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
}