html, body {
  background: #eee;
  height: 100%;
  overflow: hidden;
  text-align: center;
  color: #333;
  font-family: 'Roboto Condensed';
}

header, footer {
  background: #333;
  padding: 10px;
  color: white;
  height:20%;
  
}

section {
  margin: 5px;
  padding: 10px;
  height: 60%;
  font-size: 15px;
  text-align: left;
}

article {
  margin: 20px;
  padding: 20px;
  font-size: 14px;
  text-align: left;
}

nav ul {
  padding: 0;
   text-decoration: none;
 color: #fff;

}

nav ul li {
  display: inline;
  margin: 5px;
   text-decoration: none;
 color: #fff;

}

nav ul a:link, nav ul a:visited, nav ul a:hover{
 text-decoration: none;
 color: #fff;
 text-transform: uppercase;
 font-family: 'Arial';
 font-weight: bold;
}

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

.shape {
  fill: transparent;
  stroke-dasharray: 165 540;
  stroke-dashoffset: -460;
  stroke-width: 2px;
  stroke: #11aaee;
}

.text {
  color: #fff;
  font-family: 'Roboto Condensed';
  font-size: 20px;
  letter-spacing: 8px;
  line-height: 32px;
  position: relative;
  top: -48px;
}

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

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