html, body {
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow-x: scroll !important;
  overflow-y: scroll !important;
  background-color: black;
}

.fullscreen-gif {
  min-width: 100vw;
  min-height: 100vh;
  object-fit: cover;
  display: block;
}

body::-webkit-scrollbar {
  width: 6px;
}

body::-webkit-scrollbar-track {
  background: transparent;
}

body::-webkit-scrollbar-thumb {
  background-color: #ccff00;
  border-radius: 3px;
}

body {
  scrollbar-width: thin;
  scrollbar-color: #ccff00 transparent;
}