html,
body {
  margin: 0;
  height: 100%;
}

body {
  overflow: hidden;
  background-color: #e8e3c7;
  color: #222222;
  font-family: Georgia, "Times New Roman", serif;
}

.site-frame {
  height: 100vh;
  padding: 10px 14px;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.site-logo {
  width: 300px;
  max-width: 72vw;
  height: auto;
  margin-bottom: 12px;
}

.panel-area {
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
}

#comic-panel {
  max-width: 92vw;
  max-height: 56vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 2px solid #222222;
}

.controls {
  margin-top: 12px;
}

button {
  background: transparent;
  color: #222222;
  border: 2px solid #222222;
  padding: 14px 32px;
  font-family: inherit;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
}

button:hover {
  background: #222222;
  color: #e8e3c7;
}

.site-footer {
  margin-top: 12px;
  font-size: 0.75rem;
  color: #222222;
  opacity: 0.65;
}