body{
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    padding-top: 50px;
}

.container{
    border: 2px solid #5b87c6;
    width: 450px;
    height: 300px;
    box-sizing: border-box;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pet-img{
    width: 200px;
    height: 150px;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pet-img.zoomed{
    width: 100%;
    height: 240px;
}

.caption{
    text-align: right;
    font-size: 13px;
    font-weight: bold;
    color: #000;
    margin-top: 5px;
}