
.instagram-container {
    margin-top: 190px;
}

.instagram-post-container{
    position: relative;
    width: 20vw;
    height: 20vw;
    margin: 7px;
}

.instagram-post-image {
    top: 0;
    left: 0;
    position: absolute;
    border-radius: 3px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.instagram-post-message {
    border-radius: 3px;
    box-sizing: border-box;
    position: absolute;
    z-index: 4;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s;
    width: 100%;
    height: 100%;
    text-align: center;
    font: normal normal normal 25px/30px Roboto;
    letter-spacing: 0;
    color: white;
    background: rgba(0, 0, 0, 0.4);
}

.instagram-post-message:hover {
    opacity: 1;

}

.instagram-posts-row {
    justify-content: center;
    display: flex;
}

@media (max-width: 986px) {
    .instagram-container {
        margin-top: 70px;
        width: 90%;
    }

    .instagram-post-container{
        width: 25vw;
        height: 25vw;
    }

    .instagram-post-message {
        font: normal normal normal 11px/18px Roboto;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}
