* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: black;
}

.rgbKineticSlider {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  height: 100svh;
  color: black;
}

.rgbKineticSlider canvas {
  position: absolute;
  display: block;
  top: 0 !important;
  left: 0 !important;
  transform: scale(1) !important;
  color: black;
}

nav a {
  color: black;
  text-decoration: none;
  position: absolute;
  top: 80vh;
  z-index: 1;
  background-color: white;
  border-radius: 50px;
  border-width: 50px;
  padding: 15px;
}

.button {
  right: 50px;
}

.button:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  nav a {
    top: auto;
    right: 20px;
    bottom: max(24px, env(safe-area-inset-bottom));
  }

  .button {
    right: 20px;
  }
}