#img_home_text{
    font-weight: normal;
    transition: all 1s ease-in-out;
    scale: 100%;
}

.img_div1:hover #img_home_text{
    scale: 105%;
    font-weight: bold;
}

.img_div1:hover img{
transition: scale 1s ease-in-out, transform 1s ease-in-out;
scale: 120%;
transform: translateY(-5%);
overflow: hidden;
}

@media screen and (max-width: 880px) {
    #img_home_text{
        font-weight: normal;
        transition: all 1s ease-in-out;
        scale: 42%;
        transform: translateY(-500%);
        animation: imgtext-anim1 ease infinite;
        animation-duration: 2.5s;
    }
    
    .img_div1:hover #img_home_text{
        scale: 50%;
        font-weight: bold;
        
    }
}