* {
  box-sizing: border-box;
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
}

h1 {
  font-size: 2em;
}


/* Body */

body {
  background: #1e1d22;
  display: flex;
  flex-direction: column;
  /* min-height: 100vh; */
}

body.scroll_disabled {
  overflow: hidden;
}

/* Page */

.page {
  display: flex;
  justify-content: center;
  background: #343137;
}

.page_heading {
  font-size: 2rem;
  font-weight: bold;
}

.page_link:link {
  color: #2f8eee;
  text-decoration: none;
}

.page_link:visited {
  color: #2f8eee;
}

.page_link:hover {
  text-decoration: underline;
}

/* Sections */

.sections {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  overflow: auto;
  max-width: 960px;
  width: 100%;
}

section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section_content {
  display: flex;
  justify-content: center;
  margin: 15px 10px 30px 10px;
  overflow: auto;
  width: 100%;
  /* flex-grow: 1; */
}

.section_content.vertical > *:not(:last-child) {
  margin-bottom: 15px;
}

.section_content > *:last-child {
  margin-bottom: 0;
}

.section_content pre {
  min-width: 490px;
}

.section_heading {
  font-size: 1.5rem;
  font-weight: bold;
}

.section_h1 {
  font-size: 1.17rem;
  font-weight: bold;
  margin-top: 20px;
}

/* - */

.noselect {
  user-select: none;
  -webkit-user-select: none;
}

.button {
  display: flex;
  border-radius: 3px;
  background: #312f38;
  color: #f0f0f0;
  font-weight: bold;
  padding: 10px 13px;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
}

.button_content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.button_logo {
  margin-right: 6px;
}

p, li, h1, h2, h3, h4, h5, h6, span {
  color: #f0f0f0;
}

.vertical {
  display: flex;
  flex-direction: column;
}

.section_content.vertical {
  align-items: stretch;
}

.scrollable {
  overflow: scroll;
}

.no-overflow {
  overflow: hidden;
}