@import url(https://fonts.googleapis.com/css?family=Montserrat);

html, body{
	  height: 100%;
	  font-weight: 800;
	  overflow: hidden;
	  margin: 0px;
}

body{
	background: #030321;
	font-family: Arial;
}

a{
	text-decoration:none;
	margin: 0 5px;
	min-width: 60px;
}

a:link, a:visited {
	  background-color: #f44336;
	  color: white;
	  padding: 14px 25px;
	  text-align: center;
	  text-decoration: none;
	  display: inline-block;
}

a:hover, a:active {
	  background-color: #f44336;
}

svg {
    display: block;
    font: 10.5em 'Montserrat';
    width: 800x;
    height: 150px;
    margin: 0 auto;
}

.text-copy {
    fill: none;
    stroke: white;
    stroke-dasharray: 6% 29%;
    stroke-width: 5px;
    stroke-dashoffset: 0%;
    animation: stroke-offset 5.5s infinite linear;
}

.text-copy:nth-child(1){
	stroke: #4D163D;
	animation-delay: -1;
}

.text-copy:nth-child(2){
	stroke: #840037;
	animation-delay: -2s;
}

.text-copy:nth-child(3){
	stroke: #BD0034;
	animation-delay: -3s;
}

.text-copy:nth-child(4){
	stroke: #BD0034;
	animation-delay: -4s;
}

.text-copy:nth-child(5){
	stroke: #FDB731;
	animation-delay: -5s;
}

@keyframes stroke-offset{
	100% {stroke-dashoffset: -35%;}
}

#c-text{
	color: white;
	width: 100%;
	text-align: center;
}

#container {
  height: 100%;
  position: relative;
  border: 0px solid green;
}

#center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}