body {
    margin: 0;
    background-color: #ffffff;
    background-image: url('streetwear.jpg');
    background-size: cover;
    background-position: center -30%;
    font-family: "Trade Winds", system-ui;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fffffffe;
    padding: 15px 30px;
    color:rgb(0, 0, 0);
}

.logo {
    background: #000000;
    color: white;
    padding: 5px 10px;
    font-size: 5px;
}

.logo img {
    width: 50px;
}

.clothing {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 400px;
    margin: 40px auto;
}

.product {
    background: #ffffff;
    padding: 20px;
    text-align: center;
    color:rgb(0, 0, 0);
}

.product img {
    width: 80px;
    margin-bottom: 10px;
}

.cart {
    background: #2f3d2f;
    color: #00e025fe;
    padding: 8px;
    margin-top: 10px;
    width: 120px;
    margin-left: auto;
    margin-right: auto;
}

.trade-winds-regular {
  font-family: "Trade Winds", system-ui;
  font-weight: 400;
  font-style: normal;
}

