.box1 {
    width: 100%;
    /* margin: 0px 40%; */
    /* height: 150px; */
    /* background-color: #f55c04; */
    position: relative;
    overflow: hidden;
}

.box1 img {
    width: 100%;
    height: auto;
    overflow: hidden;
    transition: transform 2.5s ease;
}

  
  .box1 img:hover {
    transform: scale(1.2); /* 1 = original size, 1.2 = 20% bigger */
  }
  
.box2 {
    width: 100%;
    height: 100%;
    background-color: rgb(188, 236, 236);
    background-color: rgb(253, 170, 122);
    /* background-color: #F7E0B6; */
    text-wrap: balance;
    /* overflow: hidden; */
    position: absolute;
    top: 100%;
    left: 0;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    /* color: rgb(0, 0, 0); */
    transition: all 1.5s;
}

.box2 p {
    /* border-top: 1px solid white; */
    /* border-bottom: 1px solid white; */
    padding: 10px;
    text-align: left;
    /* color: white; */
    font-size: 16px;
}

.box1:hover .box2 {
    left: 0;
    top: 70px;
}