:root {
  color-scheme: light;
  background: #ffffff;
  color: #050505;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --label-size: 10px;
  --label-weight: 700;
  --label-tracking: 0;
  --contact-size: 8px;
  --contact-weight: 300;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #ffffff;
}

body {
  min-height: 100svh;
  cursor: pointer;
  user-select: none;
}

.stage {
  display: grid;
  width: 100vw;
  height: 100svh;
  place-items: center;
  padding: clamp(28px, 7vw, 84px);
}

#portfolio-image {
  display: block;
  max-width: min(78vw, 980px);
  max-height: min(78svh, 760px);
  width: auto;
  height: auto;
  object-fit: contain;
}

.signature {
  position: fixed;
  top: 16px;
  left: 18px;
  z-index: 2;
  margin: 0;
  color: #050505;
  font-size: var(--label-size);
  font-weight: var(--label-weight);
  line-height: 1;
  letter-spacing: var(--label-tracking);
  pointer-events: none;
  -webkit-font-smoothing: antialiased;
}

.contact {
  position: fixed;
  bottom: 16px;
  left: 18px;
  z-index: 2;
  display: flex;
  gap: 14px;
  font-size: var(--contact-size);
  font-weight: var(--contact-weight);
  line-height: 1;
  letter-spacing: var(--label-tracking);
  -webkit-font-smoothing: antialiased;
}

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

.seo-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 640px) {
  .stage {
    padding: 36px 22px;
  }

  #portfolio-image {
    max-width: 86vw;
    max-height: 76svh;
  }

  .signature {
    top: 13px;
    left: 14px;
    font-size: 9px;
  }

  .contact {
    bottom: 13px;
    left: 14px;
    gap: 10px;
    font-size: 8px;
  }
}
