
body {
      margin: 0;
      height: 100vh;
      background: #0f0f0f;
      overflow: hidden;
      color: white;
    }

#follower {
      position: fixed;
      top: 0;
      left: 0;
      width: 65px;
      height: 65px;
      pointer-events: none;
      opacity: 0.6;
      transform: translate(-50%, -50%);
      transition: transform 0.08s linear;
      will-change: transform;
    }
footer {
      text-align: center;
      box-shadow: 0px 15px 30px 10px rgba(5, 250, 54, 1.0); 
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Fills the entire screen */
}

main-content {
  flex: 1; /* Pushes the footer down by taking up remaining space */
}

footer {
  margin-top: auto; /* Locks footer to the bottom */
}


