html, body {
  background: #083310;
  height: 100%;
  overflow: hidden;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
 -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.footer{
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;

}


p,a{
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: normal;
}
.svg-wrapper {
  height: 111px;
	margin: 0 auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
}

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


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

@keyframes cor {
  0% {
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}

@keyframes tiraborda {
  0% {
    stroke: #fff;
  }
  100% {
    stroke: transparent;
  }
}

.svg-wrapper .shape {
  animation-name: draw, cor, tiraborda;
  -webkit-animation-name: draw, cor, tiraborda;
  
  animation-duration: 12s, 20s, 12s;
  -webkit-animation-duration: 12s, 20s, 12s;
  
  animation-delay: 0s,2s, 2s;
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@media (max-width: 800px){
  .svg-wrapper {
    width: 90%;
  }
  svg{
        width: 100%;
  }
}