﻿HTML CSSResult
EDIT ON


.card {
    text-align: center;
    margin-right: 40%;
    margin-left: 40%;
    width: 350px;
    height: 400px;
    background: white;
    box-shadow: 0px 0px 0px grey;
    -webkit-transition: box-shadow .6s ease-out;
    box-shadow: .8px .9px 3px grey;
}

    .card:hover {
        box-shadow: 1px 8px 20px grey;
        -webkit-transition: box-shadow .6s ease-in;
    }

/*body {
    background-color: #F0EFEE;
}*/
