body {
    height: 100%;
    font-family: "muli", sans-serif;
    font-size: 16px;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
  }
  
  .wrap {
    background-color: #020041;
    height: 100%;
	  width: 100%;
	  background:url("../img/lunar-stars.svg");
 /* background:url("../img/space_bkg.svg"); */
	  background-size:cover;
	  overflow: hidden;
  }
  
  h1 {
    color: #ffffff;
    font-size: 2em;
    text-align: center;
  }
  
  .sub-description {
    color: #ffffff;
    text-align: center;
  }
  
  .story-container {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .story-container::after {
    background-color: rgb(155, 214, 255);
    content: "";
    height: 100%;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
  }
  
  figure {
    color: #ffffff;
    display: block;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    margin: 0;
    width: 100%;
  }
  figure::before {
    background-color: rgb(155, 214, 255);
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
  }
  figure img {
    display: block;
    width: 100%;
    border:4px solid rgb(155, 214, 255);;
  }
  
  .cta-link {
    background-color: hsl(0, 0%, 100%);
    border: 2px solid #020041;
    border-radius: 0.3em;
    color: #020041;
    font-size: 1.4em;
    padding: 0.5em;
    transition: 0.4s;
    text-decoration: none;
  }
  .cta-link:hover {
    background-color: hsl(0, 0%, 0%);
    border-color: hsl(0, 0%, 100%);
    color: #ffffff;
  }
  .cta-link:focus {
    background-color: #ffffff;
    border-color: #170387;
  }
  
  .cta-section {
    background-color: rgb(155, 214, 255);
    padding: 4em;
    text-align: center;
  }
  
  @media screen and (min-width: 1em) {
    .wrap {
      padding: 1em 1em 0 1em;
    }
  
    .story-container {
      margin: 0 auto;
    }
    .story-container::after {
      top: 0;
      left: 0;
    }
  
    figure {
      margin-bottom: 2em;
      max-width: 100%;
      padding-left: 2em;
      width: auto;
      padding-right: 3em;
    }

    figure::before {
      height: 4px;
      position: absolute;
      top: 0;
      left: 0;
      width: 2em;
    }
    figure .title {
      font-size: 1.4em;
    }
  }
  @media screen and (min-width: 48em) {
    .wrap {
      padding: 4em 4em 0 4em;
    }
  
    .story-container {
      max-width: 1200px;
    }
    .story-container::after {
      right: 0;
      left: 0;
    }
  
    figure {
      max-width: 50%;
      padding-left: 0;
      padding-bottom: 0;
      padding-right: 3em;
    }
    figure:nth-child(even) {
      margin-left: 50%;
      padding-left: 2em;
      text-align: left;
      padding-right: 5em;
    }
    figure:nth-child(even) img {
      border-radius: 0 0.5em 0.5em 0.5em;
    }
    figure:nth-child(even)::before {
      left: 0;
      right: auto;
    }
    figure:nth-child(odd) {
      padding-right: 2em;
      margin-right: 50%;
      text-align: right;
    }
    figure:nth-child(odd) img {
      border-radius: 0.5em 0 0.5em 0.5em;
    }
    figure:nth-child(odd)::before {
      right: 0;
      left: auto;
    }
    figure:last-child {
      margin-bottom: 1em;
    }
  }
  @-webkit-keyframes vertical-line-grow {
    from {
      height: 0;
    }
    to {
      height: 100%;
    }
  }
  @keyframes vertical-line-grow {
    from {
      height: 0;
    }
    to {
      height: 100%;
    }
  }
  @-webkit-keyframes card-fade-in {
    from {
      opacity: 0;
      transform: scale(1.3, 1.3);
    }
    to {
      opacity: 1;
      transform: scale(1, 1);
    }
  }
  @keyframes card-fade-in {
    from {
      opacity: 0;
      transform: scale(1.3, 1.3);
    }
    to {
      opacity: 1;
      transform: scale(1, 1);
    }
  }
  @-webkit-keyframes line-expand {
    from {
      width: 0;
    }
    to {
      width: 4em;
    }
  }
  @keyframes line-expand {
    from {
      width: 0;
    }
    to {
      width: 4em;
    }
  }
  figure.animatable {
    visibility: hidden;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
  }
  
  .story-container::after {
    -webkit-animation-name: vertical-line-grow;
            animation-name: vertical-line-grow;
    visibility: visible;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
    -webkit-animation-duration: 3s;
            animation-duration: 3s;
    -webkit-animation-play-state: running;
            animation-play-state: running;
  }
  
  figure.animated::before {
    -webkit-animation-name: line-expand;
            animation-name: line-expand;
    visibility: visible;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
    -webkit-animation-duration: 0.4s;
            animation-duration: 0.4s;
    -webkit-animation-play-state: running;
            animation-play-state: running;
  }
  
  figure.animated {
    -webkit-animation-name: card-fade-in;
            animation-name: card-fade-in;
    visibility: visible;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-play-state: running;
    animation-play-state: running;
  }