:root {
  color-scheme: light;
  background-color: #a6aab3;
}

* {
  box-sizing: border-box;
}

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

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

.wip-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
}

.wip-card {
  width: min(100%, 760px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wip-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100svh - 110px);
  height: auto;
  border: 0;
  box-shadow: 0 0 90px rgba(166, 170, 179, 0.65);
}

.wip-contact {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 18px 12px 0;
  color: #123d70;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
}

.wip-contact a {
  color: inherit;
  text-decoration: none;
}

.wip-contact a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .wip-page {
    align-items: start;
    padding: 0 0 18px;
  }

  .wip-card,
  .wip-image {
    width: 100%;
  }

  .wip-image {
    max-height: none;
    box-shadow: none;
  }

  .wip-contact {
    padding: 16px 18px 24px;
  }
}
