.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@font-face {
  font-family: 'icon';
  src: url("./icons.eot");
  src: url("./icons.woff") format('woff'), url("./icons.ttf") format('truetype');
  font-weight: 400;
}
html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
#main-canvas {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  top: 0;
  left: 0;
}
#main-canvas.pointing {
  cursor: pointer;
}
#main-canvas.scrubbing {
  cursor: ew-resize;
}
#header {
  position: relative;
  top: 0;
  left: 0;
  z-index: 100;
  width: 200px;
  background: rgba(255, 255, 255, 0.85);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: rgba(0, 35, 35, 0.8);
  padding: 0 100px;
  height: 100%;
  overflow: auto;
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
#header a,
#header a:visited,
#header a:active {
  text-decoration: none;
  color: #002323;
  cursor: pointer;
  font-weight: 600;
}
#header h1 {
  font-family: "Source Code Pro";
  font-weight: normal;
  margin-top: 80px;
}
#header.collapsed {
  height: 60px;
  width: 300px;
  padding: 0 50px;
  overflow: hidden;
}
#header.collapsed h1 {
  margin: 20px 0 0 70px;
  font-size: 15px;
}
#header.collapsed #dismiss {
  position: absolute;
  top: 15px;
  left: 320px;
  width: 30px;
  height: 30px;
  font-size: 15px;
  font-family: icon;
  background: none;
  color: #002323;
  -moz-box-shadow: 0 0 5px rgba(0, 35, 35, 0);
  -webkit-box-shadow: 0 0 5px rgba(0, 35, 35, 0);
  box-shadow: 0 0 5px rgba(0, 35, 35, 0);
  margin: 0;
}
#header.collapsed #f-the-logo {
  left: -20px;
  top: -35px;
  opacity: 0.5;
}
#header.collapsed #f-the-logo:hover {
  opacity: 1;
}
#header.collapsed #f-text {
  display: none;
}
#header.collapsed p {
  display: none;
}
#dismiss {
  left: 60px;
  margin: 40px 0;
  text-align: center;
  vertical-align: middle;
  position: relative;
  font-size: 18px;
  padding: 8px 10px;
  width: 40px;
  height: 24px;
  font-family: "Source Code Pro";
  background: #002323;
  color: white;
  font-weight: 600;
  cursor: pointer;
  opacity: 0.5;
  overflow: hidden;
  -webkit-transition: opacity 0.15s ease-in-out;
  -moz-transition: opacity 0.15s ease-in-out;
  -ms-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out;
}
#dismiss:hover {
  opacity: 1;
}
#f-the-logo {
  position: relative;
  top: 0px;
  left: 30px;
  width: 74px;
  height: 90px;
  cursor: pointer;
  margin-bottom: 100px;
  opacity: 0.5;
  -webkit-transition: opacity 0.15s ease-in-out;
  -moz-transition: opacity 0.15s ease-in-out;
  -ms-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out;
}
#f-the-logo:hover {
  opacity: 1;
}
#f-orb {
  position: absolute;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 40px;
  overflow: hidden;
  font-family: 'icon';
  font-weight: 400;
  text-align: center;
  font-size: 14px;
  padding-left: 2px;
  color: rgba(0, 35, 35, 0.8);
  border: solid 2px rgba(0, 35, 35, 0.8);
}
#f-text {
  position: absolute;
  width: auto;
  height: 40px;
  top: -2px;
  left: 60px;
  line-height: 17px;
  text-transform: lowercase;
  font-variant: small-caps;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03rem;
  text-align: left;
}
@media (max-width: 700px) {
  #header {
    width: 250px;
    padding: 0 75px;
  }
  #dismiss {
    left: 50%;
    margin: 40px -40px;
  }
}
