
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
 
  body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: #610303;
    font-family: "Poppins", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
 
  h2 {
    color: #000000;
    font-size: 240px;
    font-weight: 900;
    text-transform: capitalize;
    line-height: 1;
    cursor: default;
  }
 
  .cursor {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #02006d;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    mix-blend-mode: difference;
    transition: all 0.1s ease-out;
    pointer-events: none;
  }
 
  h2:hover + .cursor {
    transform: scale(15);
  }

  



