*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  background: #f7f3ee;
  color: #5c534a;
  font-family: Georgia, "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.portrait {
  margin: 0;
  max-width: min(26rem, 100%);
  text-align: center;
}

.portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 1rem;
  background: #fffbf7;
  border: 1px solid #e0d6c8;
  box-shadow: 0 10px 32px rgba(44, 38, 32, 0.07);
}

.portrait figcaption {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #5c534a;
}
