body {
  background: black;
  margin: 0;
  display: -webkit-flex;
  display:    -moz-flex;
  display:         flex;
  -webkit-align-items: center;
     -moz-align-items: center;
          align-items: center;
  -webkit-flex-direction: column;
     -moz-flex-direction: column;
          flex-direction: column;
}

.indieweb-contact {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: black;
  padding: 0 10px;
}

.indieweb-contact h2 {
  text-align: center;
  color: white;
  font-weight: 100;
  font-size: 30px;
  margin: 40px 0;
  letter-spacing: 2px; 
}

.indieweb-contact ol {
  padding: 22px 10px 18px;
  margin: 0;
  width: 100%;
  max-width: 320px;
  display: -webkit-flex;
  display:    -moz-flex;
  display:         flex;
  -webkit-flex-wrap: wrap;
     -moz-flex-wrap: wrap;
          flex-wrap: wrap;
  background: #4e4e50;
  list-style: none;
  border-radius: 32px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.indieweb-contact li {
  width: 33%;
  text-align: center;
}

.indieweb-contact li a {
  font-size: 11px;
  font-weight: 100;
  letter-spacing: 0.08em;
  padding: 7px 0;
  display: block;
  color: white;
  text-decoration: none;
}

.indieweb-contact a img {
  width: 60px;
  height: 60px;
  border-radius: 13px;
  overflow: hidden;
  display: block;
  margin: 0 auto 5px;
}

/*

  mobile only
  
*/

@media only screen and (max-width: 768px) {
  .indieweb-contact h2 {
    font-weight: 200;
  }

  .indieweb-contact li a {
    font-weight: normal;
    font-size: 12px;
    letter-spacing: 0;
  }
}