@import url('https:fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/*  bosy disini */
body
{
    height: 1500px; 
   /* width: 600;*/
    font-family: Helvetica, sans-serif;
  /*  font-size: 24px; */
    margin: auto;
    text-align: center;
  /*  display: flex;*/
    justify-content: center;
    align-items: center;
   /* min-height: 100vh; */
}

h1 {
    font-size: 5em; 
    }

.container
{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
   /* flex-direction: column;*/
    padding: 20px 0;
    transform-style: preserve-3d;
}  

.container .box
{
    position: relative;
    width: 300px;
    height: 260px;
    margin: 30px 25px;
    background: #fff;
    background: #fff;
    transform-style: preserve-3d;
}

.container .box:hover
{
    box-shadow: 0 50px 80px rgba(0, 0, 0, .2); 
}

.container .box .imgBx
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.container .box .contentBx
{
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    background: #fff;
    transform: translateZ(20px) scaleY(0);
    padding: 20px 25px;
    transform-origin: top;
    transition: 0.5s;
    transform-style: preserve-3d;
}

.container .box:hover .contentBx
{
    transform: translateZ(50px) scaleY(1);
}


