body {
    background-color: white;
    margin: 0;
    padding: 0px 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
}


header{
    background-color: #fdebe0;
}

.header_list {
    display: flex;
    list-style: none;
    justify-content: center;
    padding: 20px 0;
    margin: 0
}

.header_list li a{
    padding: 0px 30px;
    color: black;
    text-decoration: none;
}
.header_list li a:hover{
    text-decoration: underline;
}
.welcome{
    background-color: #fdebe0;
    width: 100vw;
}
.search-bar{
    width: 60vw;
    border: none;
    border-radius: 10px;
    height: 30px;
    padding-left: 30px;
    border: 1px solid grey;
}

h1{
    font-size: 50px;
}

.welcome-header{
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome-picture{
    height: 270px;
}

.product_search{
    padding-left: 20vw;
}

.products {
    padding: 10px 20vw;
    background-color: white;
}  

.products h2 {
    padding-left: 20px;
}

.product-box{
    width: 200px;
    margin: 10px;
}

.product-img{
    width: 200px;
    height: 200px;
    object-fit: cover;
}



.product-list{

    display: flex;
    justify-content: center;
    list-style: none;
}


