/* fancycorp.io */

:root {
  --bg-start:     #f5f1ec;
  --bg-end:       #ddd8d0;
  --mat:          #ede8e0;
  --mat-border:   rgba(0, 0, 0, 0.08);
  --shadow-a:     rgba(60, 45, 30, 0.18);
  --shadow-b:     rgba(60, 45, 30, 0.08);
  --credit-color: #9e9189;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-start:     #1e1b18;
    --bg-end:       #161310;
    --mat:          #2c2821;
    --mat-border:   rgba(255, 255, 255, 0.06);
    --shadow-a:     rgba(0, 0, 0, 0.5);
    --shadow-b:     rgba(0, 0, 0, 0.25);
    --credit-color: #7a6f67;
  }
}

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

html {
  height: 100%;
  margin: 0;
}

body {
  min-height: 100%;
  margin: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, var(--bg-start), var(--bg-end));
  background-attachment: fixed;
  padding: clamp(1.5rem, 5vmin, 4rem);
}

.frame {
  background-color: var(--mat);
  border: 1px solid var(--mat-border);
  border-radius: 6px;
  padding: clamp(1.5rem, 4vmin, 3rem);
  box-shadow:
    0 4px 16px var(--shadow-a),
    0 1px  4px var(--shadow-b);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

img {
  display: block;
  max-height: 75vh;
  max-width: min(70vw, 600px);
  border-radius: 3px;
  border: 1px solid var(--mat-border);
}

.art {
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--credit-color);
}

.art a {
  color: var(--credit-color);
  text-decoration: none;
}

.art a:hover {
  text-decoration: underline;
}
