@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap");

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  font-size: 16px;
  font-family: "Rubik", sans-serif;
  --cursorX: 50vw;
  --cursorY: 50vh;
  --imgTranslate: 0px;
}

.maskVisibility::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.3);
  z-index: 10000;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

img {
  display: block;
}

body {
  background-color: black;
  width: 100vw;
  overflow-x: hidden;
  white-space: normal;
}

::-webkit-scrollbar {
  width: 12px;
  background: none;
}

::-webkit-scrollbar-track {
  background-color: #888;
}

::-webkit-scrollbar-thumb {
  background: #00b0ef;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #3ccbff;
  border-radius: 10px;
}

@media screen and (max-width: 786px) {
  
  ::-webkit-scrollbar {
    display: none;
  }
}