/* ========= Google Fonts ========= */
@import url('https://fonts.googleapis.com/css2?family=Rounded+Mplus+1c:wght@400;700&display=swap');

/* ========= body ========== */
body {
    font-family: heisei-maru-gothic-std, sans-serif;
    font-weight: bold;
    font-style: normal;
    background-color: #F3F3B4;
    cursor: url('/assets/images/cursor.png') 4 4, auto;
  }

/* ========= cursor ========= */
.cursor-footprint {
    position: fixed;
    width: 16px;
    height: 16px;
    pointer-events: none;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1s ease-out, transform 1s ease-out;
    transform-origin: center center;
  }

   #access {
    cursor: url('/assets/images/cursor2.png') 4 4, auto;
  }
  
  @keyframes fadeOut {
    0% {
      opacity: 1;
      transform: scale(1);
    }
  
    100% {
      opacity: 0;
      transform: scale(1.2);
    }
  }
  
 