/* Inherit the full height and width of the screen all the way down */
.base .base-body,
.base .graphic-and-page,
.base .page-container-outer,
.base .graphic-container-outer,
.base .graphic-container,
.base .graphic-layer,
.base #graphic-canvas {
  width: inherit;
  height: inherit;
}

/* Set the top element/html to screen's 100 view width and height */
.base {
  color: white;
  background: black;
  font-family: "Courier New", monospace;
  height: 100vh;
  width: 100vw;
}

/* Create invisible breaks between each segment */
.base .segment-break {
  height: 20vh;
  width: inherit;
}

/* Background graphic layer fixed and always visible below */
.base .graphic-container-outer {
  position: fixed;
  z-index: 0;
  overflow: hidden;
}

/* Scrollable top content layer */
.base .page-container-outer {
  position: relative;
  z-index: 1;
  overflow-y: scroll;
}

.base .segment {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  white-space: break-spaces;
}

.base .segment-content {
  margin-left: 40px;
  margin-right: 40px;
}

/* unvisited link */
.base a:link {
  color: yellow;
}

/* visited link */
.base a:visited {
  color: orange;
}

/* mouse over link */
.base a:hover {
  color: white;
}

/* selected link */
.base a:active {
  color: white;
}

/* BEGIN Segment specific styling */
.base .long-text-segment {
  white-space: break-spaces;
}
