* {
  box-sizing: border-box;
}

:root {
  --background: #ffffff;
  --ink: #022955;
  --logo-width: clamp(260px, 23vw, 330px);
  --contact-size: clamp(15px, 1.25vw, 19px);
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--background);
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.card {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  background: var(--background);
  overflow: hidden;
}

.identity {
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: var(--logo-width);
}

.identity img {
  display: block;
  width: 100%;
  height: auto;
}

.contact {
  position: absolute;
  left: 50%;
  bottom: clamp(88px, 12vh, 120px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 0;
  font-style: normal;
  font-size: var(--contact-size);
  line-height: 1.25;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

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

.contact a:hover,
.contact a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

@media (max-width: 520px) {
  :root {
    --logo-width: min(235px, 58vw);
    --contact-size: 15px;
  }

  .identity {
    top: 42%;
  }

  .contact {
    bottom: max(70px, env(safe-area-inset-bottom));
    gap: 12px;
  }
}

@media (max-height: 620px) {
  .identity {
    top: 38%;
  }

  .contact {
    bottom: 42px;
  }
}
