body {
    margin:0;
    font-family: system-ui;
    background:#0f172a;
    color:white;
}

header {
    display:flex;
    justify-content:space-between;
    padding:20px;
    background:#020617;
}

.logo {
    font-weight:bold;
    font-size:24px;
}

.hero {
    text-align:center;
    padding:100px 20px;
}

.cards {
    display:flex;
    gap:20px;
    padding:40px;
}

.cards div {
    flex:1;
    background:#1e293b;
    padding:30px;
    border-radius:10px;
}

#products-list {
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    padding:20px;
}

.product {
    background:#1e293b;
    padding:15px;
    border-radius:10px;
    width:200px;
}

.product img {
    width:100%;
    border-radius:8px;
}