body {
    background-color: #121212;
    color: #ffffff;
    font-family: Arial, sans-serif;
    text-align: center;
}

.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.product {
    background: #1e1e1e;
    border-radius: 10px;
    padding: 15px;
    margin: 10px;
    width: 250px;
}

.product img {
    width: 100%;
    border-radius: 10px;
}

.order-btn {
    display: block;
    margin-top: 10px;
    padding: 10px;
    background: #ff9800;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}
