html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

canvas {
  display: block;
  width: 100%;
  height: auto;
}

/* Start of code from: https://makeaero.com/ */
.frutiger-aero-button {
  --hue: 245;
  --sat: 0.2;
  --glow-intensity: 0.7;

  --fg: oklch(15% calc(var(--sat) * 0.5) var(--hue));
  --bg: oklch(75% var(--sat) var(--hue) / 0.8);
  --bg-dark: oklch(45% var(--sat) var(--hue) / 0.75);

  --bottom-glow: radial-gradient(
    farthest-corner at bottom center,
    rgba(255,255,255,var(--glow-intensity)),
    transparent
  );

  padding: 0.75em 2em;
  font-size: 1rem;
  
  background-color: var(--bg);
  background:
    var(--bottom-glow),
    linear-gradient(to bottom, var(--bg-dark), var(--bg));
  border: 1px solid var(--bg);
  border-radius: 9999px;
  box-shadow: 0 4px 4px rgba(0,0,0,0.4);

  color: white;
  font-family: "Lucida Console",system-ui,sans-serif;
  font-weight: 500;
  text-shadow: 0 2px 0.5em rgba(0,0,0,0.2);
  letter-spacing: 0.5px;

  cursor: pointer;
  position: relative;
  transition: all 300ms ease;

  user-select: none;
}

.frutiger-aero-button::after {
  content: "";
  position: absolute;
  top: 4%;
  left: 0.75em;
  width: calc(100% - 1.5em);
  height: 40%;

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.8),
    rgba(255,255,255,0.1)
  );

  border-radius: inherit;
  pointer-events: none;
}
/* End of code from: https://makeaero.com/ */

.frutiger-aero-button:hover {
  box-shadow: 0 6px 8px rgba(0,0,0,0.4);
  transform: translateY(-1px);
  color: oklch(40% calc(var(--sat) * 0.5) var(--hue));
}

.frutiger-aero-button:active {
  box-shadow: 0 2px 4px rgba(0,0,0,0.4);
  transform: translateY(1px);
}

.frutiger-blue {
  --hue: 245;
}

.frutiger-green {
  --hue: 140;
}

.frutiger-slider {
  -webkit-appearance: none; 
  border-radius: 5px;
  height: 12px;
  background: white;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
  box-shadow: 0 4px 4px rgba(0,0,0,0.3);
  cursor: pointer;
}

.frutiger-slider:hover {
  opacity: 1;
}

.frutiger-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 25px;
  border-radius: 2px;
  background: rgb(179, 179, 179);
  box-shadow: 0 4px 4px rgba(0,0,0,0.3);
  cursor: pointer;
}