html,
body {
  font-family: Arial;
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  line-height: 1.45em;
  background-color: #000;
  color: #fff;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 100;
  align-items: center;
  justify-content: center;
  display: none;
}

.loading-overlay.active {
  display: flex;
}
/* 
.char {
  display: block;
  margin: 0px auto;
  max-width: 500px;
}

.char img {
  margin-right: 20px;;
}

.char .row {
  text-align: left;
  margin: 10px 0px;
}

.char .row.bold {
  font-weight: bold;
}

.updates {
  max-width: 500px;
  margin: 0px auto;
}

.updates .action {
  text-align: center;
}

.updates .update {
  padding: 10px;
  background-color: #222;
}

.updates .update .status {
  font-size: 12px;
  margin: 0px 0px;
}

.updates .update .thought {
  font-size: 17px;
  margin: 10px 0px;
}

button {
  background-color: #fff;
  padding: 0;
  font-family: monospace;
  color: #000;
  border: 0px;;
}

button:hover {
  text-decoration: underline;
} */

.story {
  font-size: 15px;
  max-width: 67ch;
  margin: 50px auto 0px auto;
}

.story * {
  line-height: 1.5em;
}

.story .biography {
  display: flex;
  gap: 25px;
  align-items: center;
}

.story .biography-image img {
  max-width: 42px;
  border: 1px solid #fff;
}

.story .biography-text {

}

.story .updates {
  margin-top: 40px;
}

.update {
  border: 1px solid #fff;
  padding: 20px;
  opacity: 0.45;
}

.update.current {
  border: 1px solid #fff;
  opacity: 1;
}

.action, .update {
  /* margin-top: 20px; */
}

.updates .user-action {
  text-align: center;
  padding: 20px 0;
  font-size: 12px;
  opacity: 0.5;
}

.loader {
  border: 1px solid #fff;
  margin-bottom: 20px;
  overflow: hidden;
}

.loader-inner {
  background-color: #fff;
  height: 20px;
  width: 0px;
}

.update .actions {
  display: flex;
  flex-direction: column;
}

.update .thought {
  margin: 20px 0;
  font-size: 20px;
  line-height: 1.55em;
}

.update .actions button {
  padding: 6px 0;
  background-color: transparent;
  border: 0px;
  text-align: left;
  color: #fff;
  line-height: 1;
  cursor: pointer;
}

.update .actions button.disabled {
  cursor: default;
  pointer-events: none;
}

.update .actions button:hover {
  text-decoration: underline;
}

.story .update .context {
  font-size: 13px;
  text-transform: uppercase;
}