body{
    background-image: url(background.jpg);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}

.top {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;    
    margin: auto;

}

.perspective {
    width: 100%;
    perspective: 1000px;
}

.card{
    width: 313px;
    height: 389px;
    margin: auto;
    box-shadow: 0 70px 63px -60px #494848;
    transform-style: preserve-3d;
    transition: transform 0.05s linear;
}

.card .thumb {
    background-size: cover;
    height: 100%;
    width: 100%;
    /* border-radius: 25px; */
}

.card .thumb:after{
    background: inherit;
    content: '';
    display: block;
    position: absolute;
    left: -50px;
    top: 40px;
    width: 100%;
    height: 108%;
    z-index: -1;
    filter: blur(55px);
}
