body {
  background-color: #000000;
  color: #FFFDF9;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
}

h1 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 17vw;
  font-weight: 500;
  margin: 0;
  white-space: nowrap;
}

h1.name {
  padding-top: 3vw;
}

h1.title {
  margin-top: -3vw;
}

h2 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.3125em;
}

a {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.75em;
  font-weight: 500;
  text-decoration: none;

  color: #4E5551;
}

a:hover {
  color: #FFFDF9;
}

footer a {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1em;
  padding: 0.625em;
}

p {
  font-size: 1em;
}

html, body {
  height: 100%;
  margin: 0;
}

div.wrapper {
  min-height: calc(100% - 50px);
  padding-left: 6vw;
  padding-right: 6vw;
}

div.main-links {
  padding-top: 3.25em;
}

div.behance-link {
  display: inline-block;
  margin-right: 3em;
  margin-bottom: 1.25em;
}

div.linkedin-link {
  display: inline-block;
  margin-right: 3em;
  margin-bottom: 1.25em;
}

div.underline {
  background-color: #FFFDF9;
  height: 0.25em;
  margin-top: 0.25em;
  transition: transform 0.5s;
}

div.underline-behance {
  background-color: #FFFDF9;
  height: 0.25em;
  margin-top: 0.25em;
  transition: transform 0.5s;
}

div.underline-linkedin {
  background-color: #FFFDF9;
  height: 0.25em;
  margin-top: 0.25em;
  transition: transform 0.5s;
  /*width: 100%;
  max-width: 12.375em;
  position: absolute;*/
}

div.behance-link:hover > div.underline-behance {
  transform: translate(0em, -0.3125em);
}

div.linkedin-link:hover > div.underline-linkedin {
  transform: translate(0em, -0.3125em);
}

footer {
  max-width: 40.625em;
  width: 100%;
  height: 50px;
  margin: auto;
  text-align: center;
  left: 0;
  right: 0;
}

footer a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 782px) {
  div.top-links {
    width: 400px;
  }
  div.bottom-links {
    width: 400px;
  }
}

.draw-strike {
     transition: color 0.25s;
   position: relative;
}
 .draw-strike::before {
     border-top: 2.5vw solid transparent;
     width: 0;
}
 .draw-strike::before {
   position: absolute;
   content: '';
     top: 57%;
     left: 0;
   -webkit-transform: skewY(-45deg);
   -moz-transform: skewY(-45deg);
   transform: skewY(-45deg);
}

@keyframes strike-through-one {
  0% {
    width: 0%;
  }
  50% {
    width: 0%;
  }
  70% {
    width: 100%;
  }
}

@keyframes strike-through-two {
  0% {
    width: 0%;
  }
  80% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.draw-strike-one::before {
     width: 100%;
     height: 1vw;
   border-top-color: inherit;
   animation: 3s ease-out 0s 1 strike-through-one;
}

.draw-strike-two::before {
     width: 100%;
     height: 1vw;
   border-top-color: inherit;
   animation: 3s ease-out 0s 1 strike-through-two;
}

.reveal1,
.reveal1::after {
            animation-delay: 0;
            animation-delay: var(--animation-delay, 100ms);
            animation-iteration-count: 1;
            animation-iteration-count: var(--iterations, 1);
            animation-duration: 3000ms;
            animation-duration: var(--duration, 3000ms);
            animation-fill-mode: both;
}

.reveal1 {
    position: relative;
    animation-name: text;
    color: #FFF;
    white-space: nowrap;
    cursor: default;
}

.reveal1::after {
        content: "";
        position: absolute;
        z-index: 999;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #000000;
            transform: scaleX(0);
            transform-origin: 0 50%;
        pointer-events: none;
            animation-name: revealer;
    }


  .reveal2,
  .reveal2::after {
              animation-delay: 0;
              animation-delay: var(--animation-delay, 500ms);
              animation-iteration-count: 1;
              animation-iteration-count: var(--iterations, 1);
              animation-duration: 3000ms;
              animation-duration: var(--duration, 3000ms);
              animation-fill-mode: both;
  }

  .reveal2 {
      position: relative;
      animation-name: text;
      color: #FFF;
      white-space: nowrap;
      cursor: default;
  }

  .reveal2::after {
          content: "";
          position: absolute;
          z-index: 999;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background-color: #000000;
              transform: scaleX(0);
              transform-origin: 0 50%;
          pointer-events: none;
              animation-name: revealer;
      }


@keyframes text {
    from {
            clip-path: inset(0 100% 0 0);
    }
    to {
            clip-path: inset(0 0 0 0);
    }
}




@keyframes revealer {

    0%, 50% {
            transform-origin: 0 50%;
    }

    60%, 100% {
            transform-origin: 100% 50%;
    }


    60% {
            transform: scaleX(1);
    }

    100% {
            transform: scaleX(0);
    }
}

