* {
  padding: 0;
  margin: 0;
}

body {
  background: black;
  color: white;
  font-family: monospace;
  padding-top: 25%;
}
.container {
  margin: 0 auto;
  width: 50%;
}

a:link, a:visited, a:hover, a:active {
  color: white;
}

p {
  padding-bottom: 15px;
}

#typed-cursor {
  font-weight: 100;
  color: white;
}

.slogan {
  color: #2E3D48;
  position: absolute;
  top: 50%;
  text-align: center;
  margin: -60px 0 0 0;
  display: block;
  width: 100%;
}

#typed-cursor {
  color: #2E3D48;
  font-weight: 100;
}

#typed-cursor.blinking {
  -webkit-animation: 1s blink step-end infinite;
  -moz-animation: 1s blink step-end infinite;
  -ms-animation: 1s blink step-end infinite;
  -o-animation: 1s blink step-end infinite;
  animation: 1s blink step-end infinite;
}

@keyframes "blink" {
  from,to {
    color: transparent;
  }
  50% {
    color: white;
  }

}

@-moz-keyframes blink {
  from,to {
    color: transparent;
  }
  50% {
    color: white;
  }

}

@-webkit-keyframes "blink" {
  from,to {
    color: transparent;
  }
  50% {
    color: white;
  }

}

@-ms-keyframes "blink" {
  from,to {
    color: transparent;
  }
  50% {
    color: white;
  }

}

@-o-keyframes "blink" {
  from,to {
    color: transparent;
  }
  50% {
    color: white;
  }
}
