
body {
	background-color: #212121;
	text-align: center;
	color: #fff;
	font: normal 15px/25px 'Roboto', sans-serif;
	letter-spacing: 6px;
}
a, a:hover, a:active, a:link, a:visited {
	text-decoration: none;
	color: #fff;
}

.head {
	padding: 0 30px;
	margin: 30% 0 15%;
}
@media(min-width: 1000px) {
	.head {
		margin: 20% 0 15%;
	}
}
.subtitle {
	font-size:1.3em;
	padding: 15px 0;
}

.logo {
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}
.bottom_link {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 1%;
}


.svg-wrapper {
	margin: 0 auto;
  	transform: translateY(-50%);
  	width: 320px;
}

.shape {
  fill: transparent;
  stroke-dasharray: 140 540;
  stroke-dashoffset: -474;
  stroke-width: 4px;
  stroke: #19f6e8;
}

.text {
  line-height: 32px;
  position: relative;
  top: -52px;
}

@keyframes draw {
  0% {
    stroke-dasharray: 140 540;
    stroke-dashoffset: -474;
    stroke-width: 4px;
  }
  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;
}