/* Simple, minimal, centered layout inspired by fatevilchildren.com */

:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #666666;
  --rule: #111111;
  --max: 720px;
  /* White outline stroke (multiple shadows simulate outline) */
  --text-stroke: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff,
    0 1px 0 #fff, 0 -1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg) url("./background.png") center center / cover no-repeat fixed;
  color: var(--text);
  font: 16px/1.45 "Merriweather", Georgia, "Times New Roman", Times, serif;
  text-shadow: var(--text-stroke);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px 22px 56px;
  text-align: center;
}

.title {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.sub {
  margin: 10px 0 0;
}

.spacer {
  height: 26px;
}

.rule {
  height: 1px;
  background: var(--rule);
  margin: 22px auto 26px;
  width: 100%;
}

h2 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list li {
  margin: 10px 0;
}

.date {
  font-variant-numeric: tabular-nums;
}

.muted {
  color: var(--muted);
}

a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover,
a:focus-visible {
  opacity: 0.75;
}

.photo {
  margin: 0;
}

.photo img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--rule);
}

.drop {
  margin: 0;
  font-size: 64px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.embed {
  width: 100%;
  margin: 14px 0 0;
  border: 1px solid var(--rule);
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.photoPlaceholder {
  width: 100%;
  aspect-ratio: 3 / 2;
  border: 1px solid var(--rule);
  display: grid;
  place-items: center;
  text-transform: lowercase;
}

.links {
  margin: 0;
}

.footer {
  margin-top: 34px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 420px) {
  .title {
    font-size: 36px;
  }

  .drop {
    font-size: 44px;
  }
}
