.container{
    background-color: white;
}

.wrapper{
    margin: 0 15%;
}

.annogramm{
    font-size: 24px;
    padding-top: 15px;
}

.animal-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 16px; /* Optional: adds space between the items */
    text-align:center;
}

.animal {
    background: url("https://d26ghyry7sktj5.cloudfront.net/lkp_assets/header-bg.jpg");
    display: flex;
    flex-direction: column;
    flex: 1 1 calc(25% - 16px); /* Makes sure each item takes up about a quarter of the row */
    max-width: calc(25% - 16px);
    border-radius: 20px;
    padding: 10px 10px 10px 10px;
    box-sizing: border-box;
    border: 1px solid #e6e6e6;
}

.animal > h3{
    font-size: 20px;
    margin: 10px 0;
}

.animal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .animal {
        flex: 1 1 calc(33.33% - 16px); /* Adjust to 3 per row */
        max-width: calc(33.33% - 16px);
    }
}

@media (max-width: 768px) {
    .animal {
        flex: 1 1 calc(50% - 16px); /* Adjust to 2 per row */
        max-width: calc(50% - 16px);
    }
}

@media (max-width: 480px) {
    .animal {
        flex: 1 1 100%; /* Adjust to 1 per row */
        max-width: 100%;
    }
}

.bottom-animal{
    margin-top: auto;
}
