.header {
  margin: 0 auto;
  padding: 20px;
  background-image: url(../assets/IMG_5387.JPG);
  height: 100vh;
  background-position: left;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.line {
  width: 2px;
  height: 100px;
  position: absolute;
  top: 28%;
  left: 0;
  overflow: hidden;
  transform: skewX(70deg);
}

.line::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  background-color: #96E679;
  animation: diagonal-grow 1.5s forwards;
}

@keyframes diagonal-grow {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}/*# sourceMappingURL=style.css.map */