html, body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.wrapper {
  width: 100%;
  height: 100vh;
  background: #fefefe;
  display: grid;
  position: relative;
  overflow: hidden;
}

.dot {
  width: 24px;
  height: 24px;
  position: absolute;
  transition: .3s transform;
  transition-timing-function: ease-out;
  transform: translate(0, 0);

  &:after {
    content: '';
    position: absolute;
    border-radius: 50%;
    left: 8px;
    top: 8px;
    right: 8px;
    bottom: 8px;
    background: var(--background);
    cursor: pointer;
  }
}

.current-hue, .counter {
  position: absolute;
  z-index: 100;
  left: 24px;
  bottom: 64px;
  width: 64px;
  background-color: oklch(50% 0.1 var(--hue) / 1);
  height: 24px;
  border-radius: 4px;
}

.counter {
  left: auto;
  right: 24px;
  text-align: center;
  line-height: 24px;
  font-size: 12px;
  color: oklch(80% 0.1 var(--hue) / 1);
}

footer {
  background-color: oklch(50% 0.1 var(--hue) / 1);
  position: absolute;
  z-index: 100;
  left: 0;
  right: 0;
  bottom: 0;
  height: 32px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;

  a {
    font-size: 12px;
    color: oklch(80% 0.1 var(--hue) / 1);
    text-decoration: none;
  }
}