* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  color: #fff8dc;
  cursor: grab;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.45)),
    url("jawka.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed
}

.content {
  position: fixed;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 5;
  pointer-events: none;
}

.content h1 {
  margin: 0;
  font-size: 36px;
  letter-spacing: -1px;
}

.content p {
  margin: 12px 0 0;
  font-size: 15px;
  color: #9ca3af;
}

.background-glow {
  position: fixed;
  inset: auto;
  width: 500px;
  height: 500px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 102, 255, 0.14);
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
}

#runner {
  position: absolute;
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 28px;

  border: 1px solid rgba(255, 255, 255, 0.18);

  box-shadow:
    0 25px 80px rgba(0, 102, 255, 0.35),
    0 0 30px rgba(0, 102, 255, 0.45),
    inset 0 0 20px rgba(255, 255, 255, 0.08);

  user-select: none;
  pointer-events: none;
  will-change: transform, left, top;
}


body {
  cursor: grab;
}

body:active {
  cursor: grabbing;
}