/**
 * XWeb Stylesheet
 */
html,
body {
  height: 100%;
  font-weight: 400;
  font-family: "Teko", sans-serif;
}

html {
  display: table;
  margin: auto;
}

body {
  background: #111;
  text-align: center;
  color: #555;
  display: table-cell;
  vertical-align: middle;
  font-size: 1rem;
}

h1 {
  margin: 1rem 0;
  color: #555;
  font-weight: 400;
  font-size: 1.5rem;
}

h1,
p {
  letter-spacing: 2px;
}

p {
  position: relative;
  text-transform: uppercase;
  overflow: hidden;
  background: linear-gradient(90deg, #111, #555, #111);
  background-repeat: no-repeat;
  background-size: 82%;
  animation: animate 6s linear infinite;
  background-clip: text;
  -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

svg {
  display: block;
  margin: 1rem auto;
  font-family: "Arial", sans-serif;
  font-size: 260px;
  width: 320px;
}

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

.text-copy:nth-child(1) {
  stroke: #35374b;
  animation-delay: -1s;
}

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

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

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

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

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

@keyframes animate {
  0% {
    background-position: -500%;
  }

  100% {
    background-position: 500%;
  }
}
