@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");

body {
  margin: 0;
  overscroll-behavior: none;
  font-family: 'Roboto';
}

#container {
  position: relative;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  cursor: move;
}

#cursor {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 76px;
  height: 76px;
  margin-top: -38px;
  margin-left: -38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  letter-spacing: 1.5px;
  text-align: center;
  contain: layout style size;
  backface-visibility: hidden;
  pointer-events: none;
  touch-action: none;
  will-change: transform;
  user-select: none;
}

#cursor-circle {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: #000;
  opacity: 0.85;
}

.controls {
  position: fixed;
  z-index: 2;
  right: 54px;
  bottom: 34px;
  display: flex;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.15);
  background: #fff;
  color: #000;
  border-radius: 10px;
  overflow: hidden;
  cursor: default;
}

.control {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #000;
  border: none;
  background: none;
}

.control[disabled] {
  opacity: 0.3;
  cursor: default;
}

.control svg {
  fill: currentColor;
}

.control+.control {
  border-left: 1px solid #CBD5E1;
}

@media (min-width: 1921px) {
  .control {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 991px) {
  .controls {
    display: none;
  }
}