.img-area {
    width: 1170px;
    margin: 2% auto;
}

.single-img {
    position: relative;
    /* width: 30%; */
    float: left;
    /* margin: 0 1%; */
}

.image {
    display: block;
    width: 100%;
    height: auto;
}

.img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(128, 128, 128, 0.900);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
}

.single-img:hover .img-overlay {
    height: 100%;
}

.text {
    position: absolute;
    top: 60%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-family: poppins;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

.text span {
    font-weight: 300;
}





/* ignore the code below */


.link-area {
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 15px;
    border-radius: 40px;
    background: tomato;
}

.link-area a {
    text-decoration: none;
    color: #fff;
    font-size: 25px;
}
.button{
    background-color:black;
    color: #fff;
    font-weight: bold;
    margin-top: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100px;
    line-height: 35px;
    text-align: center;
    transition: all 0.5s ease;
    font-family: Montserrat, sans-serif;
    text-transform: uppercase;
    border: 0;
}