:root {
  color-scheme: light;
  --page: #fff;
  --ink: #151515;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--page);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(32px, 8vw, 96px) 24px;
}

.brand {
  width: min(100%, 980px);
  display: grid;
  justify-items: center;
  gap: clamp(28px, 6vw, 60px);
}

.brand-image {
  display: block;
  width: 100%;
  height: auto;
}

.contact {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 6px;
}
