body{
    background-color: #eef6ff;
    font-family: 'Open Sans', sans-serif;
}

.container{
    position: absolute;
    width: 600px;
    height: 300px;
    top: 200px;
    left: calc(50% - 300px);
    display: flex;
}
.card{
    background-color:  #bd8aff;
    display: flex;
    width: 200px;
    height: 280px;
    border-radius: 10px;
    box-shadow: -1rem 0 3rem rgba(138, 36, 163, 0.418);
    transition: 0.4s ease-out;
    position: relative;
    left: 0px;
}
.card:not(:first-child){
    margin-left: -50px;

}
.card:hover{
    transform: translateY(-20px);
    transition: 0.4s ease-out;
    background-color: rgb(255, 180, 245);
}
.card:hover ~ .card{
    position: relative;
    left: 50px;
    transition: 0.4s ease-out;
}

.title{
    color: #000000;
    font-weight: 500;
    position: absolute;
    top: 15px;
    left: 45px;
}
