body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image:url(download.jpg);
}

header {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    text-align: center;
}

.cart {
    margin-top: 10px;
}
.selamat{
    text-align: center;
    color: white;
}
main {
    padding: 20px;
}

.products {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.product {
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin: 10px;
    width: 200px;
    text-align: center;
}

.product h2 {
    font-size: 1.5em;
}

.product button {
    background: #28a745;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.product button:hover {
    background: #218838;
}