@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Inconsolata:wght@200..900&family=Karla:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --primary-dark: #1F191B;
  --page-width: 80ch;
  --global-page-width: 80ch;
}

html {
  background-color: #F8F8F8;
  color: var(--primary-dark);
  scroll-behavior: smooth;
}


body {
    font-family: "Roboto", "Inter", "Arial", sans-serif, "Inconsolata", "IBM Plex Mono", monospace, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

body {
  margin: 0 auto;
  width: 100%;
  max-width: var(--page-width);
  padding: 16px;
  padding-top: 8rem;
  padding-bottom: 6.5rem;
}

h2 {
    font-family: "Inter", "Roboto", "Arial", "Karla", "Inconsolata", monospace, sans-serif;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

p {
    margin-bottom: 1rem;
}

p, ul, ol {
    line-height: 124%;
    font-size: 0.9rem;
}

ul, ol {
  padding-left: 24px;
}

li {
    margin-bottom: 0.2rem;
}

a {
  text-decoration: none;
}

.a {
  color: #5ba3b0;
  /* 47aab5 5bb071 */
  text-decoration: none;
  /* border-bottom: 1px dotted #5ba3b0; */
  padding: 1px;
  font-weight: 600;
}

.a:hover {
  background-color: #ccebea;
  /* background-color: #b0e5eb; #ccebd4;*/
  transition: background-color 0.12s ease;
  /* 0.16s */
  border-radius: 2px;
}

.strong {
    font-weight: 700;
}

.page-section {
    margin-bottom: 50px;
}

/* divs & blocks */
.inline-block {
  display: inline-block;
}

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

.center-align {
  text-align: center;
  vertical-align: top;
}

.div-2 {
    width: 2%;
    vertical-align: top;
}

.div-20 {
    width: 18%;
    vertical-align: top;
}

.div-33 {
    width: 31%;
    vertical-align: top;
}


.div-50 {
    width: 48%;
    vertical-align: top;
}

.div-65 {
    width: 63%;
    vertical-align: top;
}



/* MOBILE VIEW */

@media (max-width: 680px) {
  .mobile-collapse {
    display: block;
    width: 100%;
  }

  .mobile-hide {
    display: none;
  }
}