/* Cat breed container */
.cat-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 2em;
}

/* Individual Cat breed cards */
.cat-breed {
    flex: 1 1 300px;
    margin: 1em;
    padding: 1em;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

/* Images inside cat breed cards */
.cat-breed img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Headings inside cat breed cards */
.cat-breed h3 {
    margin: 0.5em 0;
}

/* Paragraphs inside cat breed cards */
.cat-breed p {
    margin: 0.5em 0 1em;
}

/* Hover effect */
.cat-breed:hover {
    transform: scale(1.05);
}

/* Media queries */
@media (max-width: 768px) {
    .cat-container {
        flex-direction: column;
        align-items: center;
    }

    .cat-breed {
        flex: 1 1 100%;
        max-width: 100%;
    }
}