

.unit {
    width: 300px;
    margin: 0 auto;
	padding: 10px;
}

.hover-box {
    display: block;
    position: relative;
    overflow: hidden;
}

.hover-box img {
    display: block;
    width: 100%;
}

.hover-box h2 {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background-color: rgba(96,58,96,.75);
    margin: 0;
    color: #fff;
    text-align: center;
    font-size: 3rem;
    transform: scale(0.65);
    transition: all 200ms ease-out;
}

.hover-box:hover h2 {
    transform: scale(1.3);
}

.hover-box span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}