* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::selection {
  background: yellow;
}

::-moz-selection {
  background: yellow;
}

html {
  min-height: 100%;
  padding: 1.5vw 3vw 3vw;
}

body {
  overflow: auto;
  color: #111;
  background: #fffdf8;
  font-family: Arial, sans-serif;
  font-weight: normal;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 4vw;
  font-size: 1rem;
}

.site-logo,
.back-link {
  border-bottom: 1px solid transparent;
}

.site-logo:hover,
.back-link:hover {
  border-bottom-color: currentColor;
}

.season-page {
  width: 100%;
}

h1 {
  margin: 0 0 20px -0.5vw;
  font-size: 6.5rem;
  line-height: 0.98;
  font-weight: normal;
  letter-spacing: 0;
}

.viewer-block {
  display: flex;
  min-height: 78vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: -40px;
}

.iframe-wrapper {
  width: min(780px, 56vw);
  aspect-ratio: 16 / 11;
  position: relative;
}

iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

audio {
  width: min(720px, 56vw);
  height: 28px;
  margin-top: 12px;
}

.image-flow {
  display: flow-root;
  padding-top: 90px;
}

.photo {
  width: min(40%, 560px);
  margin-bottom: 110px;
}

.photo-left {
  float: left;
  clear: both;
}

.photo-right {
  float: right;
  clear: both;
}

figcaption {
  margin-top: 8px;
  color: #6d6d6d;
  font-size: 0.875rem;
}

.memory-note {
  clear: both;
  width: min(62%, 820px);
  margin: 210px 0;
  font-size: 1.2rem;
  line-height: 1.7;
}

.note-right {
  margin-left: auto;
  text-align: right;
}

.note-left {
  margin-right: auto;
  text-align: left;
}

@media (max-width: 760px) {
  html {
    padding: 18px;
  }

  .site-header {
    margin-bottom: 32px;
  }

  h1 {
    font-size: 3.6rem;
  }

  .viewer-block {
    min-height: 66vh;
    margin-top: 0;
  }

  .iframe-wrapper,
  audio {
    width: 100%;
  }

  .image-flow {
    padding-top: 52px;
  }

  .photo,
  .memory-note {
    float: none;
    width: 100%;
    margin: 0 0 72px;
  }

  .memory-note {
    font-size: 1rem;
  }

  .note-right {
    text-align: left;
  }
}
