﻿* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f7fb;
  color: #111827;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.jump-button {
  border: 0;
  border-radius: 10px;
  padding: 14px 22px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  background: #111827;
  cursor: pointer;
}

.jump-button:hover {
  background: #1f2937;
}

.jump-button:active {
  transform: translateY(1px);
}

.jump-button:focus-visible {
  outline: 3px solid #93c5fd;
  outline-offset: 4px;
}
