body{
  background-image: url("https://www.designbolts.com/wp-content/uploads/2012/12/Cubes-White-Seamless-Pattern.jpg")
}

#home {
    clip-path: url(#cache);
  }
  svg{
    background-color: #131313;
  }
  #red {
    fill: none;
    opacity: 100;
    stroke: #212121;
    stroke-width: 12;
    stroke-miterlimit:10;}
  #blue {
    fill: none;
    opacity: 0.7;
    stroke: #1d1d1d;
    stroke-width: 12;
    stroke-miterlimit:10;
  }
  #light-blue {
    fill: none;
    opacity: 0.2;
    stroke: #8d8d8d;
    stroke-width: 6;
    stroke-miterlimit:10;
    stroke-dasharray: 200;
    stroke-dashoffset: 800;
    animation: draw 4s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;    
  }
  @keyframes draw {
    to {
      stroke-dashoffset: 0;
   }
      }
  @keyframes show {
    0% {
      opacity: 0.15;
   }
    50% {
      opacity: 0.2;
   }
    100% {
      opacity: 0.15;
   }
      }