* {

}

p, li {
  font-family: Ubuntu;
}

body {
  margin: 0px;
  padding: 0px;
  background-color: #24262d;
  color: white;
  font-family: monospace;
}

h2, h3, h4 {
  margin: 0em auto;
  margin-top: .5em;
}

h3 {
  padding-top: 1.5em;
}

a {
  color: white;
}

.indent {
  margin-left: 2em;
}

h2 {
  font-size: 24px;
  margin: 0em;
  margin-bottom: 12px;
  padding: 0em;
  background-color: rgba(0,0,0,0);
  color: #ffe6c0;
}
h3 { font-size: 20px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }

p, li {
  padding: 0px;
  margin: .25em 0em;
  font-size: 16px;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

tr, td {
  padding: 0px;
  margin: 0em;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.split .content-insert:nth-child(odd){
  margin-right: .25em;
}
.split .content-insert:nth-child(even) {
  margin-left: .25em;
}


.projects { width: 100%; }

.project {
  width: 100%;
  max-width: 90%;
  margin: 1em auto;
}

.project h2 {
  text-align: center;
  border-color: white;
  border-bottom: solid;
}

.selected {
  color: black;
  background-color: white;
}

.subtle { color: gray; }

.content {
  width: 100%;
  margin: 1em auto;

  max-width: min(70em, 95%);

  background-color: #313031;
  padding: .5em;

  box-shadow: 1px 1px 5px black;

  border-radius: 5px;
}

.title h1, .title h2, .title h3, .title h4, .title h5 {
  display: inline;
  padding: 0em .25em 0em 0em;
  margin: 0em;
}

.content-insert {
  margin: 0em 1em;
  padding: .25em 1em;
  background-color: #414040;
  box-shadow: 1px 1px 5px black inset;
  border-radius: 5px;
}

.content-insert :first-child {
  margin-top: 0em;
  padding-top: .25em;
}

.bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

/* Tool tip stuff */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 240px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
  translate: 0% 50%;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.main-title * {
  text-align: center;
  margin: 0em;
  padding: 0em;
}