:root {
  --blue: #0054a4;
  --red: #d71920;
  --white: #ffffff;
  --dark: #071827;
  --muted: #8fa3b5;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  color: var(--white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 4vh 5vw;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 0.4vh solid var(--blue);
  padding-bottom: 2vh;
}

.brand {
  font-size: 4vh;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.venue {
  font-size: 2.4vh;
  color: var(--muted);
}

.main {
  flex: 1;
  display: grid;
  place-items: center;
  text-align: center;
}

.court {
  font-size: 20vh;
  font-weight: 900;
  line-height: 1;
}

.label {
  margin-top: 2vh;
  font-size: 5vh;
  font-weight: 700;
}

.status {
  margin-top: 2vh;
  font-size: 3vh;
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 2.4vh;
  color: var(--muted);
  border-top: 0.25vh solid rgba(255, 255, 255, 0.18);
  padding-top: 2vh;
}

.pill {
  display: inline-block;
  padding: 0.7vh 1.4vw;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
}

a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 0.2vh solid var(--red);
}

a:hover {
  color: var(--muted);
}
