*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal; */
    font-weight: 700;
}
body{
    background-color: rgb(85, 79, 27);
}
.product-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.product {
    border: 1px solid #ccc;
    margin: 15px;
    padding: 15px;
    width: 250px;
    height: 300px;
    border-radius :20px;
}
.product img {
    margin-left: 10px;
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}
.product h3{
    margin-left: 60px;
}
button {
    padding: 10px 20px;
    background-color: #3399cc;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 20px;
    margin-left: 60px;
}
.product-start h1{
    text-align: center;
    font-size: 40px;
    margin-top: 10px;
}
