*,::before,::after{
    margin: 0;
    padding: 0;
    block-size: border-box;
}
body{
    background-color: rgb(28,29,30);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}
.container{
    display: flex;
}
.card:hover{
    z-index: 10;
}
.card{
    width: 350px;
    height: 430px;
    perspective: 1000px;
    transform-style: preserve-3d ;
}
.contentCard{
    perspective: 1000px;
    transform-style: preserve-3d ;
    transition: all 0.25s ease-out;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 13px;
    /* transform: rotateX(50deg) rotateY(10deg); */
}

.contentCard img{
    perspective: 1000px;
    transform-style: preserve-3d ;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.glow img{
    mix-blend-mode: hard-light;
    opacity: 0.0;
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all 0.25s ease-in-out;
}
.glow img:hover{
    mix-blend-mode: hard-light;
    /* opacity: 0.3; */
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.image01:hover{
    opacity: 0.3;
}
.image02:hover{
    opacity: 0.1;
}
.image03:hover{
    opacity: 0.3;
}
.image04:hover{
    opacity: 0.6;
}
.glow {
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.25s ease-out;
    border-radius: 13px;
    mix-blend-mode: hard-light;
    background: radial-gradient(circle at 50% 0%, rgba(184,196,211,0.7), transparent);
}