/* home page buttons */

.zoom-button {
    cursor: pointer;
    margin: 5% auto;
    width: 330px;
    height: 220px;
    overflow: hidden;
    position: relative;
    text-align: center;
}

    .zoom-button img {
        width: 100%;
        max-width: 330px;
        transition: transform .5s ease;
    }

    .zoom-button:hover img {
        transform: scale(1.3);
    }

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

    .text-overlay h3 {
        text-shadow: 2px 2px 4px rgba(0,0,0,.5);
        color: #fff;
    }

    .text-overlay a {
        color: #fff !important;
        text-decoration: none;
    }

.column-grey li {
    color: #fff !important;
    margin: 0.25rem 0 !important;
}



