.ig-card {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    row-gap: 0.25rem;
    column-gap: 0.35rem;
}

#social-media-feed h4 a{
    font-family: Lato-Bold;
    color: #444242;
    margin-bottom: 3%;
    font-size: 2.3rem;
}

@media screen and (max-width: 768px) {
    .ig-card {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
    .ig-card {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}
@media screen and (min-width: 992px) {
    .ig-card {
        grid-template-columns: repeat(6, 1fr) !important;
    }
}