.hand { align-items: center; bottom: -11rem; display: flex; height: 345px; /* can hold enhanced cards */ left: 50%; position: absolute; transform: translateX(-50%); transition: 0.5s } .hand:hover { bottom: 4rem; } .hand-card { align-items: flex-end; display: grid; margin: 0.2rem; } .hand-card .hand-card-img { border-radius: 0.5rem; box-shadow: 2px 2px 5px black; grid-row: 1; grid-column: 1; opacity: 1; transition: 0.1s; width: 11rem; } .hand-card.unplayable .hand-card-img { opacity: 0.7; } .hand-card:hover .hand-card-img { box-shadow: 0 10px 40px black; width: 14rem; } .hand-card .action-buttons { align-items: flex-end; display: none; grid-row: 1; grid-column: 1; } .hand-card:hover .action-buttons { display: flex; }