  /* Change the cursor to a heart image */
  body {      
    cursor: url('/static/pink_cursor_normal.png'), auto;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  .cursor-heart {
    position: fixed;
    pointer-events: none;
    font-size: 15px;
    will-change: transform, opacity;
    user-select: none;
    transition: transform 1s ease-out, opacity 1s ease-out;
  }

  #class-drawer {
      background-color: #FF69B4;
      opacity: 0.5;
  }

  .gallery-item{
    cursor: url('/static/pink_cursor_heart.png'), auto;
  }