
.tile {
  display: block;
  width: 200px;
  height: 200px;
  background: #56CCF2;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to bottom, #2F80ED, #56CCF2);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to bottom, #2F80ED, #56CCF2); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  transform-style: preserve-3d;
  position: relative;
  margin-right: 25px;
  border-radius: 50%;
  margin-bottom: 67px;
}
.tile .inner {
  display: block;
  width: 200px;
  /* height: 40px; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateZ(20px) translateX(-50%) translateY(-50%);
  background: transparent;
  text-align: center;
  line-height: 28px;
  /* text-shadow: 0px 0px 20px rgba(0,0,0,0.3); */
  color: #fff;
  text-transform: uppercase;
}





