body {
  height: 50%;
  margin: 0;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  background: #111;
  background: linear-gradient(#0c141f 40%, #cf33d9 41%, #0c141f 60%);
}

.svg-container {
  display: flex;
  justify-content: center;
  height: auto;
  width: 80%;
  padding-top: 50px;
}

html {
  height: 100%;
  overflow: hidden;
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
}

.inner-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  margin: 0 auto;
  perspective: 180px;
  perspective-origin: 50% 40%;
}

.landscape {
  position: absolute;
  width: 200%;
  left: -50%;
  height: 150%;
  bottom: -30%;
  background-image: -webkit-linear-gradient(top, #CF33D9 2px, transparent 2px), -webkit-linear-gradient(left, #CF33D9 2px, transparent 2px);
  background-size: 50px 50px, 80px 80px;
  background-position: -1px -1px, -1px -1px;
  transform: rotateX(85deg);
  animation: moveUp 1s infinite linear;
}

@keyframes moveUp {
  0% {
    background-position: -50px -50px, -1px -1px;
  }

  100% {
    background-position: -1px -1px, -1px -1px;
  }
}

@keyframes glow {
  0% {
    filter: drop-shadow(0 0 6px #CF33D9) drop-shadow(0 0 6px #CF33D9);
  }

  50% {
    filter: drop-shadow(0 0 1px #CF33D9) drop-shadow(0 0 1px #CF33D9);
  }

  100% {
    filter: drop-shadow(0 0 6px #CF33D9) drop-shadow(0 0 6px #CF33D9);
  }
}