:root {
  --cream: #f7f5ef;
  --navy: #12377f;
  --gold: #f5b921;
}

* {
  box-sizing: border-box;
}

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

body {
  overflow: hidden;
  background: var(--cream);
  display: grid;
  grid-template-rows: minmax(0, 1fr) 48px;
}

main {
  width: 100%;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.artwork {
  position: relative;
  width: min(100vw, calc((100vh - 48px) * 1.57377));
  width: min(100vw, calc((100dvh - 48px) * 1.57377));
  aspect-ratio: 1536 / 976;
  overflow: hidden;
}

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

.social-link {
  position: absolute;
  top: 85.65%;
  width: 3.2%;
  height: 5%;
  border-radius: 50%;
  outline: 0 solid transparent;
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.brand-footer {
  height: 48px;
  background: var(--navy);
  border-top: 6px solid var(--gold);
}

.social-link.facebook {
  left: 54.35%;
}

.social-link.instagram {
  left: 58.95%;
}

.social-link:hover,
.social-link:focus-visible {
  background: rgba(245, 185, 33, 0.18);
  box-shadow: 0 0 0 2px var(--gold), 0 0 0 4px var(--navy);
  transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
  .social-link {
    transition: none;
  }
}
