html, body {
    margin: 0;
    padding: 0;
    cursor: none;
    background-color: #ffff;
  }
  .bg {
    position: fixed;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    width: 200%;
    height: 200vh;
    background: transparent url('http://assets.iceable.com/img/noise-transparent.png') repeat 0 0;
    background-repeat: repeat;
    animation: bg-animation .2s infinite;
    opacity: .9;
    visibility: visible;
  }
  
  @keyframes bg-animation {
      0% { transform: translate(0,0) }
      10% { transform: translate(-5%,-5%) }
      20% { transform: translate(-10%,5%) }
      30% { transform: translate(5%,-10%) }
      40% { transform: translate(-5%,15%) }
      50% { transform: translate(-10%,5%) }
      60% { transform: translate(15%,0) }
      70% { transform: translate(0,10%) }
      80% { transform: translate(-15%,0) }
      90% { transform: translate(10%,5%) }
      100% { transform: translate(5%,0) }
  }
  .nav-wrapper {
    width: 100%;
    height: 100vh;
    background: #ffff;
    
  }
  
  nav {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: absolute;
    top: 50%;
  }
  
  .hover-this {
    transition: all 0.3s ease;
  }
  
  span {
    display: inline-block;
    font-family: helvetica;
    font-weight: 400;
    color: #1f1e20;
    
    font-size: 30px;
    text-transform: uppercase;
    pointer-event: none;
    transition: transform 0.1s linear;
  }
  span:hover{
    filter:blur(0px);
  }
  .cursor {
    pointer-events: none;
    position: fixed;
    padding: 0.3rem;
    background-color: #00FF73;
    border-radius: 50%;
    mix-blend-mode: multiply;
    transition: transform 0.3s ease;
  }
  
  .hover-this:hover ~ .cursor {
    transform:translate(-50%, -50%) scale(10);
    filter: blur(1px);
  }
  
  @media(min-width: 900px) {
    nav {
      display: flex;
      justify-content: space-around;
    }
  }
  
  @media(max-width: 900px) {
    nav {
      top: 30%;
    }
    
    .hover-this {
      width: 100%;
      padding: 20px 0;
      display: inline-block;
    }
  }
  p{
      font-family: Arial, Helvetica, sans-serif;
      font-size: 30px;
      position: relative;
      top: 5vh;
      left: 5vh;
  }