* {
  box-sizing: border-box;
}

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

body {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
  background: #000;
}

.page {
  display: grid;
  place-items: center;
  width: 100%;
}


.image-frame {
  max-width: min(90vw, 900px);
  padding: 10px;
  background: #fff;
  border: 1px solid #1f1f1f;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border-radius: 4px;
}

.image-frame img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 80vh;
  height: auto;
  object-fit: contain;
}


.player {
  width: min(90vw, 900px);
  margin-top: 18px;
}

.player audio {
  display: block;
  width: 100%;
}
