.site-container {
  max-width: 1200px;
  min-width: 280px;
  padding: 0 10px;
  margin: 0 auto;

  box-sizing: border-box;
  border: 3.5px solid white;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* White box inside big box */
.footer-container {
  max-width: 1200px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  margin: 20px auto;
  padding: 15px 10px;
  box-sizing: border-box;
  border: 3.5px solid white;
  text-align: center;
  background: #201611;
  overflow-x: hidden;
}

/* Texter inside little white box */
.footer-container p {
  white-space: normal !important;
  word-break: break-word;
}

/* Vibrant orange for base color, just for ASCII art and linked pages */
body {
  margin: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  height: 100vh;
  display: layout;
  padding: 15px 20px;
  min-height: 99%;
  width: 100%;
  min-width: 280px;
  color: #FFAC1C;
  background: #201611;
  font-family: cursor, monospace;
  overflow-x: hidden;
  font-size: clamp(10px, 1.2vw, 14px);
}

.defaultBodyTextColor {
  color: #B89076;
  white-space: normal !important;
  word-wrap: break-word;
  font-size: clamp(13px, 1.5vw, 15px);
}

.defaultSectionsTextColor {
  color: #FFAC1C;
  font-weight: bolder;
  text-decoration: underline;
  white-space: normal !important;
  word-wrap: break-word;
  font-size: clamp(13px, 1.5vw, 15px);
}

::selection {
  color: #211830;
  background-color: #519975;
}

::-moz-selection {
  color: #211830;
  background-color: #519975;
}


b {
  font-weight: bold;
  text-decoration: underline;
}

p {
  display: block;
  text-align: left;
  line-height: 1.3em;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: 0.05em;
  animation: typing 0.5s steps(30, end);
}

.no-animation {
  animation: typing 0 steps(30, end);
}

.margin {
  margin-left: 20px;
}







.inherit,
a {
  color: #9C8394;
}

a {
  text-decoration: inherit;
}

/* - - - */
/* Link styles + Hover styles */
#email-link {
  cursor: pointer;
  text-decoration: underline;
  color: #9C8394;
  transition: color 0.3s ease;
}

#email-link:hover {
  color: #519975 !important;
}

#github-link {
  cursor: pointer;
  text-decoration: underline;
  color: #9C8394;
  transition: color 0.3s ease;
}

#github-link:hover {
  color: #519975 !important;
}

#home-link {
  cursor: pointer;
  text-decoration: underline;
  color: #9C8394;
  transition: color 0.3s ease;
}

#home-link:hover {
  color: #519975 !important;
}

#book-recs-link {
  cursor: pointer;
  text-decoration: underline;
  color: #9C8394;
  transition: color 0.3s ease;
}

#book-recs-link:hover {
  color: #519975 !important;
}

#projects-link {
  cursor: pointer;
  text-decoration: underline;
  color: #9C8394;
  transition: color 0.3s ease;
}

#projects-link:hover {
  color: #519975 !important;
}
/* - - - */



/* Body text - separate styling from banner */
.body-text {
  white-space: normal !important;
  word-wrap: break-word;
  margin-top: 10px;
  font-size: clamp(11px, 1.5vw, 14px);
  line-height: 1.4em;
}



