* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url(Untitled.jpeg);
    background-size: contain;
    background-attachment: absolute;
}
.card {
    position: relative;
    width: 300px;
    height: 400px;
    background-image: url(balayya.jpeg);
    background-size: cover;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    box-shadow: 10px 20px 40px rgba(0, 0, 0,1);
    transition: 1s;

}
.card:hover{
    transform: translateX(50%);
}
.card .imgbox{
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform-origin: left;
    transform-style: preserve-3d;
    background: #000 ;
    transition: 1s;
}
.card:hover .imgbox{
    transform: rotateY(-180deg);
}

.card .imgbox img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover ;
    transform-style: preserve-3d;
    backface-visibility: hidden  ;

}
.card .imgbox img:nth-child(2){
    transform: rotateY(180deg); 
}
.card .details{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
h2{
    -webkit-text-stroke: 2px;
    -webkit-text-stroke-color: aqua;
}
