.icons {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
}

.icon {
    border-radius: 2px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    color: inherit;
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    background: #fff;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    margin: 15px;
    width: 144px;
    padding: 10px;
    justify-content: center;
}

.icon:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.icon img {
    margin-bottom: 10px;
    border-radius: 2px;
    width: 128px;
    height: 128px;
    box-shadow: 0 2px 1px rgba(0, 0, 0, .24), 0 0px 1px rgba(0, 0, 0, 0.48);
    align-self: center;
    margin-top: 5px;
}

.icon>div>div {
    margin-top: auto;
    margin-bottom: auto;
}

.icon>div {
    height: 100%;
    display: flex;
    flex-direction: column;
}

body {
    margin: 40px auto;
    max-width: 1300px;
    line-height: 1.6;
    font-size: 18px;
    color: #000;
    padding: 0 10px;
    background: #cfe5d4;
    font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
}

h1,
h2,
h3 {
    line-height: 1.2;
}

h1 {
    text-align: center;
}

h1 a {
    color: inherit;
    text-decoration: inherit;
}