/* Default styles for all screen sizes */
.image_box{
    height:250px;
    align-items: center;
    display: flex;
    width: 100%;
    background-color: #fff;
}

.image_size{
    height: auto;
    margin: 0 auto; 
    max-height: 100%;
    max-width: 100%;
    width: auto;
}


/* Media query for smaller screens (e.g., mobile devices) */
@media (max-width: 768px) {
    .image_box{
    height:150px;
}
}