/* B3 — Lines and Dots (starter styles)
   Base styles for the page. The dots and the lines are created from JavaScript.

   Use these colours for the dots:
   ["#f7d354", "#e0574a", "#4ec9b0", "#5aa9e6", "#c77dff", "#ff9f68"]
*/

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  overflow: hidden;
  font-family: "Segoe UI", system-ui, sans-serif;
  background: radial-gradient(circle at 50% 40%, #1b2233, #0b0e15 70%);
}

h1 {
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  margin: 0;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #6f7a90;
  pointer-events: none;
}

.dot {
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out;
}

.line {
  position: absolute;
  height: 1px;
  transform-origin: 0 0;
  pointer-events: none;
}
