body{
    background-color:#eee;
}
.card{
    border-radius: 5px;
    border-width: 3px 4px 5px 4px;
    background-color:#181818;
    color:#eee;
    cursor: pointer;
    position: relative;
    transition: all 150ms ease-in-out;
}
.card:hover {
	top: -5px;
	left: -5px;
    box-shadow: 3px 3px 15px 0px rgba(82, 82, 82, 0.85);
}
.card:active {
	top: 5px;
	left: 5px;
	box-shadow: inset 0 0 10px rgba(82, 82, 82, 0.85);
}