
body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 20px;
}
.carousel {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.item {
    background: white;
    border-radius: 8px;
    padding: 10px;
    width: 200px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
img {
    width: 100%;
    border-radius: 4px;
}
