@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

:root {
  --text: #25313b;
  --muted: #4e5f6d;
  --link: #006c86;
  --link-hover: #004c5f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #ffffff;
  color: var(--text);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

.page {
  width: min(100% - 32px, 1120px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
}

.logo {
  width: 100px;
  height: auto;
  height: auto;
}

.message {
  max-width: 1020px;
}

h1 {
  margin: 0 0 24px;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0;
}

p {
  margin: 0 0 18px;
  color: var(--muted);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--link);
  font-weight: 700;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover,
a:focus {
  color: var(--link-hover);
}

a:focus-visible {
  outline: 3px solid rgba(0, 108, 134, 0.25);
  outline-offset: 3px;
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .page {
    padding: 40px 0;
    gap: 32px;
  }

  .logo {
    width: 180px;
  }

  h1 {
    font-size: 32px;
  }
}
