body{
    padding: 0px;
    margin: 0px;
}
.back{
    height: 100vh;
    background-image: url(../imgs/war-conflict-landscape-with-soldiers-fighting.jpg);
    background-repeat: no-repeat;
    background-size:cover ;
    background-position: center center;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
}
.div{
    display: inline-block;
     margin: 0 7px 0 0;
      width: 40%;  
    position: relative;
    top: 135px;
    overflow: hidden;
    img{
        width: 100%;
        transition: transform .5s ease-out;
    }
}
.div:hover img{
    transform: scale(1.3);
}
button{
    position: absolute;
    bottom: 100%;
    right: 40%;
    color: white;
    border: 0;
    border-radius: 50px;
    padding: 10px 30px;
    font-size: 16px;
    background-color: rgb(72, 5, 136);
    /* z-index: 3; */
    transition: transform 0.5s ease-out 0.5s;
}
.div:hover button{
    transform: translateY(80px);
    /* bottom: 80%; */
}
.lay1{
    position: absolute;
    top: 50%;
    left: 100%;
    /* transform: translateX(100%); */
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,.4);
    h2{
        background-color: #8967B3;
        margin-top: 0;
    }
    transition: transform 0.5s ease-out 0.5s  ;
}
.div:hover .lay1{
    transform: translateX(-100%);
}
.lay2{
    position: absolute;
    top: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.4);
    h2{
        background-color: #8967B3;
        margin: 0;
    }
    transition: transform 0.5s ease-out 0.5s  ;
}
.div:hover .lay2{
    transform: translateY(-50%);
}