body {
  background-color: #232323;
}

#full-page-card {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}

.header {
  color: white;
  font-family: 'astrospace';
  font-size: 4rem;
}
.subheader {
  color: white;
  font-family: 'Open Sans';
  font-size: 2.3rem;
}

.subsubheader {
  color: white;
  font-family: 'Open Sans';
  font-size: 1.5rem;
}

.bio {
  color: white;
  font-family: 'Open Sans';
  font-size: 1.1rem;
}

#sidebar {
  position: absolute;
  top: 5rem;
  left: 5rem;
}

#links {
  display: flex;
  flex-flow: column;
}

.link {
  color: white;
  font-family: 'Open Sans';
  font-size: 1.3rem;
}

.anchor:before {
  text-decoration: none;
}

.anchor {
  color: white;
  transition: 0.15s color;
}

.anchor:link {
  text-decoration: none;
  text-decoration-line: none;
}

.anchor:hover {
  color: #ff4444;
  text-decoration: none;
  text-decoration-line: none;
  transition: 0.15s color;
}

.dropdown-anchor {
  color: white;
  transition: 0.15s all;
}

.dropdown-anchor:hover {
  color: #ff4444;
  transition: 0.15s all;
}

.dropdown-menu {
  margin-left: 0.75rem;
}

.separator {
  margin-bottom: 0.25rem;
}

.requires-js {
  color: #ff4444;
  text-decoration: line-through;
}

.requires-js-tooltip-container .requires-js-tooltip {
  visibility: hidden;
  border-radius: 5px;
  padding: 5px 0;
  opacity: 0;
  transition: opacity 0.2s;
  background-color: #dddddd;
  color: #232323;
  margin-left: 1rem;
  font-size: 0.75rem;
}

.requires-js-tooltip-container:hover .requires-js-tooltip {
  visibility: visible;
  opacity: 1;
}

.centered {
  text-align: center;
}

.project-name {
  color: #44ff44;
}

.bio-emphasis {
  font-weight: bold;
}

.nav {
  color: #4444ff;
  transition: 0.15s color;
}

.nav:hover {
  color: #ff4444;
  transition: 0.15s color;
}