/* Borrowed CSS from codepen and adjusted for my case for the sole purpose of beautifying. */


.container {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    height: 20vh;
  }
  
  h1 {
    text-align: center;
  }
  
  .animation {
    text-align: center;
    text-transform: uppercase;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 40px;
    letter-spacing: 1px;
    color: #fff;
    display: inline-block;
    animation: fadeIn 1.5s forwards;
    opacity: 0;
    transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  }
  
  .first {
    display: inline-block;
    animation: firstSpan 1.5s forwards cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: 1;
    position: relative;
  }
  
  .oh {
    display: inline-flex;
    overflow: hidden;
  }
  
  .second {
    animation: secondSpan 1.5s forwards cubic-bezier(0.785, 0.135, 0.15, 0.86);
    font-weight: 100;
    z-index: -1;
    display: inline-block;
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: scale(1);
    } 
    50% {
      opacity: 1;
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  @keyframes firstSpan {
    0% {
      transform: translateX(50%);
    }
    60% {
      transform: translateX(50%);
    }
    100% {
      transform: translateX(0%);
    }
  }
  
  @keyframes secondSpan {
    0% {
      transform: translateX(-100%);
    }
    60% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(-0%);
    }
  }
  
  
  a {
    position: fixed;
    bottom: 20px;
    right: 25px;
    transition: 0.2s;
    animation: slideLeft 1.5s forwards;
    z-index: 10;
  }
  
  a:after {
    content: "";
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: 0.2s;
   }
    
  a:hover {
      opacity: 0.8;
  }    
  a:hover::after {
    width: 100%; 
  }
  
  @keyframes slideLeft {
    from {
      opacity: 0;
      transform: translateX(200px);
    } 
    to {
      opacity: 1;
      transform: translateX(0%);
    }
  }


 