.rotatingText { 
    align-items: center;
    display: flex;
    height: 100vh;
    text-align: center;
  }
  
  .rotatingText-content { 
    position: relative;
    width: 100%;
  }
  
  .rotatingText-description { 
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 14px;
    margin: 0;
    
    @media (min-width: 768px) { 
      font-size: 18px;
    }
  }
  
  .rotatingText-adjective { 
    font-family: 'Open Sans', sans-serif;
    font-size: 40px;
    margin-bottom: 0;
    margin-top: 0px;
    opacity: 0;
    position: absolute;
    text-transform: uppercase;
    top: 0;
    
    @media (min-width: 768px) { 
      font-size: 70px;
    }
    
    &:nth-of-type(1) { 
      animation: rotate-text-up 1.5s .75s; 
    }
    
    &:nth-of-type(2) { 
      animation: rotate-text-up 1.5s 2.75s; 
    }  
    
    &:nth-of-type(3) { 
      animation: fade-text-in 1.5s 4.75s;
    }
    &:nth-of-type(4) { 
        animation: fade-text-in 1.5s 6.75s; 
    }
    &:nth-of-type(5) { 
        animation: fade-text-in 1.5s 8.75s;
    }
  }
  
  @keyframes rotate-text-up { 
    0% {
      transform: translate3d(0, 80px, 0);
      opacity: 0;
    }
    
    20%, 80% {
      transform: translate3d(0, 0, 0);
      opacity: 1;
    }
    
    100% {
      transform: translate3d(0, -40px, 0);
      opacity: 0;
    }
  }
  
  @keyframes fade-text-in { 
    0% {
      opacity: 0;
      transform: translate3d(0, 80px, 0);
    }
    
    50%, 100% {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  