html, body {
  -background: #fff;
  -height: 100%;
  -overflow: hidden;
  text-align: center;
}

.svg-wrapper {
  height: 80px;
	margin: 0 auto;
  position: relative;
  top: 30%;
  transform: translateY(-50%);
  width: 320px;
}

.shape {
  fill: transparent;
  stroke-dasharray: 140 540;
  stroke-dashoffset: -474;
  stroke-width: 8px;
  stroke: #ccc;
}

.text {
  color: #ccc;	
  font-family: verdana, 'lucida console', sans-serif;
  font-size: 1.0em;
  letter-spacing: 3px;
  line-height: 34px;
  position: relative;
  top: -48px;
}

@keyframes draw {
  0% {
    stroke-dasharray: 140 540;
    stroke-dashoffset: -474;
    stroke-width: 8px;
  }
  100% {
    stroke-dasharray: 760;
    stroke-dashoffset: 0;
    stroke-width: 2px;
  }
}

.svg-wrapper:hover .shape {
  -webkit-animation: 1.0s draw linear forwards;
  animation: 1.0s draw linear forwards;
}

.all {
  margin-top: 15%;
}

a {
  color: #222;
  text-decoration: none;
}

