/* author: https://codepen.io/HighFlyer/pen/vYqvRWV
Thea
 */
:root {
    --cursor-size: 28px;
    --bg: #FAF7EE;
  }
  
  .page-wrap {
    background: var(--bg);
    min-height: 100vh;
  }
  
  #cursor {
    position: fixed;
    top: calc(var(--cursor-size) * -0.5);
    left:  calc(var(--cursor-size) * -0.5);
    pointer-events: none;
    mix-blend-mode: difference;  
    filter: url(#goo);
  }
  
  .cursor-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--cursor-size);
    height: var(--cursor-size);
    border-radius: var(--cursor-size);
    background: var(--bg);
    transform-origin: center center;
  }
  
  body {
    overflow: hidden;
  }
  
  h1 {
    margin: 0;
    padding: 50px;
    text-align: center;
    font-size: 48px;
    line-height: 1;
    font-family: sans-serif;
    text-transform: uppercase;
    user-select: none;
  }
  
  .goo {
    display: none;
  }