:root {
  --ink: #111111;
  --paper: #ffffff;
  --yellow: #f5f400;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 22%, rgba(245, 244, 0, 0.42), transparent 28%),
    linear-gradient(135deg, var(--paper), #fffef5 48%, #eeeeD8);
}

.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  min-height: 100vh;
  padding: 32px 20px;
  text-align: center;
}

.logo {
  width: min(460px, 88vw);
  height: auto;
}

.contact {
  display: grid;
  gap: 12px;
  font-size: clamp(1.15rem, 4vw, 1.6rem);
  font-weight: 700;
  line-height: 1.35;
}

.contact a {
  color: var(--ink);
  text-decoration: none;
}

.contact a:hover,
.contact a:focus-visible {
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 4px;
  text-underline-offset: 5px;
}
