html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-size: 14px;
}

body {
  font-family: serif;
  font-size: 14px;
  background-color: #252525;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

#title {
  text-align: left;
  font-family: serif;
  font-size: 2rem;
  margin: 10rem 2rem 0rem;
  color: var(--text-color);
}

#title:hover {
  color: red;
  text-decoration: underline;
  cursor: pointer;
}

.content-box {
  background: var(--background-color);
  padding: 0rem;
  max-width: 600px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 3rem auto;
}

#handle {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
}

#handle a {
  text-decoration: none;
  color: var(--text-color);
}

.handle-gif {
  width: 48px;
  height: auto;
  image-rendering: pixelated;
  position: relative;
  left: 1px;
}

.tooltip .tooltiptext {
  visibility: hidden;
  display: flex;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  display: flex;
  margin-left: 2px;
}

.inner-content-box {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  width: 100%;
  padding: 1rem;
  background: var(--background-color);
}


#welcome_text {
  margin-bottom: 0;
  border: none;
  box-shadow: none;
  padding: 0;
}

h1,
h2,
h3,
p {
  margin: 0;
}

a {
  color: darkblue;
  text-decoration: underline;
}

p {
  line-height: 1.6;
}

#handle a:hover {
  color: red;
  text-decoration: underline wavy;
  -webkit-text-decoration: underline wavy;
  cursor: pointer;
}

#credits {
  padding: 5rem
}

#under-construction {
  margin: auto;
}

#under-construction>img {
  height: auto;
  width: 300px;
  image-rendering: pixelated;
}

.story-content p {
  text-indent: 10px;
}

.story {
  display: contents;
}
.story button {
  font-size: 14px;
}

:link,
:visited {
  color: purple;
}

#book-tooltip {
  position: absolute;
  pointer-events: none;
  width: 48px;
  display: none;
  z-index: 999;
}

:link:hover,
:visited:hover {
  color: red;
  text-decoration: underline wavy;
  -webkit-text-decoration: underline wavy;
}