{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  background-color: #000000;
  color: #ffffff;
}

a:link, a:visited, a:active {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight:200;
  font-size:16px;
  text-decoration: none;
  text-transform: none;
  outline: none;
  color: #ff6600;
  -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease;
  }
  
  a:hover {
  text-decoration: none;
  color: #ff9900;
  -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease;
  }

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.container p {
  font-size: 1.8rem;
  padding: 0.2rem;
  font-weight: normal;
  letter-spacing: 0.1rem;
  text-align: center;
  overflow: hidden;
}
.container p span.typed-text {
  font-weight: normal;
  color: #ff6600;
}
.container p span.cursor {
  display: inline-block;
  background-color: #ccc;
  margin-left: 0.1rem;
  width: 1px;
  animation: blink 1s infinite;
}
.container p span.cursor.typing {
  animation: none;
}
@keyframes blink {
  0%  { background-color: #ccc; }
  49% { background-color: #ccc; }
  50% { background-color: transparent; }
  99% { background-color: transparent; }
  100%  { background-color: #ccc; }
}

section {
  color:#ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight:300;
	font-size:18px;
	text-transform:uppercase;
	text-align:center;
}
