body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

header {
    text-align: center;
    padding: 20px;
    background-color: #ffefc5;
}

.filters {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

select, button {
    padding: 10px;
    font-size: 16px;
}

#clown-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.clown-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
}

.clown-card img {
    max-width: 100%;
    border-radius: 10px;
    height: 200px;
    object-fit: cover;
}
