/* source : https://github.com/hasinhayder/ImageCaptionHoverAnimation/blob/master/index2.html*/

.caption-container a{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.caption {
    position: absolute;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #f1f1f1;
    width: 100%;
    transition: .5s ease;
    opacity: 0;
    color: white;
    text-align: center;
}

.caption-container a:hover .caption {
    opacity: 1;
}

.caption-container .caption .caption-text h1 {
    margin-top: 20px;
    font-family: "Fjalla One";
    font-size: 20px;
    text-transform: uppercase;
}