 body{
    background-color: black;
}

.container{
    margin:50px 100px;
    width:70%;
    height:350px;
    display: flex;
    justify-content: center;
    gap:10px
}

.container img{
    width:20%;
    height:100%;
    object-fit: cover;
    border-radius:10px;
    border:2px solid rgb(232, 238, 238) ;
    transition: all ease-in-out 0.5s , ;

}

.container img:hover{
    width: 50%;
}


  .btn {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    border: solid;
    background: slateblue;
    color: white;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    transition: width 2s, height 2s , font 4s;
    justify-content: space-around;

  }
  
  .btn:hover {
    width: 500px;
    height: 200px;
  background-color: pink;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 70px ;

  }

 