.container {
    display: grid;
    grid-template-columns: repeat(3, 200px);
    gap: 10px;
}
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding-left: 0;
    margin: 5px 0;
}
.tags > li {
    background-color: grey;
    border-radius: 5px;
    padding: 5px 10px;
    color: white;
}
.tags > li::marker {
    content: none;
}
.card {
    width: 200px;
}
.card > img {
    width: inherit;
    height: 200px;
    object-fit: cover;
}