.band {
    width: auto;
    display: flex;
}

.band div {
    width: 20%;
    padding: 50px 2.5% 50px 2.5%;
    text-align: center;
}

.band img {
    border-radius: 50%;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.band h2 {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #FFF;
}

.band p {
    font-size: 18px;
    font-weight: 600;
    color: #c4f1ff;
    margin-bottom: 10px;
}

.band a {
    margin-top: 10px;
    font-size: 18px;
    color: rgb(108, 108, 255);
    -webkit-transition: all ease 0.2s;
	-moz-transition: all ease 0.2s;
	transition: all ease 0.2s;
}

.band a:hover {
    text-decoration: underline;
}


.band-container {
    background-color: #000
}

@media screen and (max-width: 950px) {

    .band {
        flex-wrap: wrap;
    }

    .band div {
        width: 45%;
    }

}
