h2 {
    color: black;
}

ul.socialMediaList {
    margin: 0px;
    list-style-type: none;
    line-height: 1em;
    display: flex;
    /* flex-direction: column; */
    justify-content: space-between;
    flex-wrap: wrap;
}

ul.socialMediaList li {
    width: 49%;
}

li div.item {
    /* width: 300px; */
    width: 100%;
    height: 200px;
    background-size: contain;
    position: relative;
    margin: 0;
}

.item .item-description {
    width: 100%;
    display: table-cell;
    vertical-align: bottom;
}

.item .item-description p {
    text-align: center;
    color: white;
    font-size: 14px;
    background-color: #7eaed2;
    padding: 5px;
    transition-duration: 0.2s;
	font-weight: bold;
	text-transform: uppercase;
}

li div.item:hover p{
	background-color: #5cb9df;
}

@media (max-width: 1000px) {
    li div.item {
        /* width: 336px; */
    }
}

@media (max-width: 760px) {
    li div.item {
        /* width: 100%; */
        /* margin: 0 0 10px 0; */
        
    }

    ul.socialMediaList li {
        width: 100%;
    }
}