<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Firefox-scrollbar</title>
</head>
<body>
  <h1>If you don't see the custom cursor, change your browser to firefox!</h1>
</body>
</html>
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&family=Poppins:wght@400;700&family=Roboto&display=swap');

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Montserrat';
}

html {
  height: 50rem;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  /*Custom scrollbar*/
  scrollbar-width: 10px;
  scrollbar-color: linear-gradient(#FBAB7E, #F7CE68);
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.