:root {
  padding: 0;
  margin: 0;
  background-color: #000;
  color: #edf2f4;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.code {
  font-family: "Lucida Console", "Courier New", monospace;
}

.nav {
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 10px;
  left: 10px;
  right: 10px;
  z-index: 1;
}

.nav-item {
  float: right;
  flex: 1;
}

path { transition: fill .2s ease; }

.social-icon-button {
  fill: #344046;
}

.social-icon-button:active  {
  fill: #59656F;
}
.social-icon-button:hover {
  fill: #edf2f4;
}

a {
  color: #edf2f4;
  text-align: center;
  text-decoration: none;
}
a:hover {
  cursor:pointer;
 }

.content {
  position: fixed;
  width: 100%;
  top: 10vh;
  z-index: 1;
}

.content-title {
  font-size: 30pt;
  text-align: center;
  font-weight: 200;
}
.content-body {
  padding-top: 4em;
  text-align: center;
}

#zoomable-container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.blinking {
  animation-name: blink;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
