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

body {
    font-family: 'Lato', 'sans-serif';
    line-height: 1.4;
    color: #fefeff;
    background: rgb(8,5,16);
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

h1 {
    font-family: 'Helvetica';
    font-weight: 400;
    letter-spacing: 0.35em;
    text-shadow:
    0 0 5px  rgba(255,255,255,1),
    0 0 15px rgba(220,240,255,0.9),
    0 0 40px rgba(180,220,255,0.6),
    0 0 80px rgba(120,180,255,0.3),
    0 0 120px rgba(80,140,255,0.15);
}

h2 {
    font-family: 'Noto Serif SC';
    font-weight: 400;
    letter-spacing: 0.5em;
    text-shadow: 0 0 12px rgba(254,254,255,0.9);
    text-transform: lowercase;
}

[class^="letter"] {
    -webkit-transition: opacity 3s ease;
    -moz-transition: opacity 3s ease;
    transition: opacity 3s ease;
}

.letter-0  { transition-delay: 0.2s; }
.letter-1  { transition-delay: 0.4s; }
.letter-2  { transition-delay: 0.6s; }
.letter-3  { transition-delay: 0.8s; }
.letter-4  { transition-delay: 1.0s; }
.letter-5  { transition-delay: 1.2s; }
.letter-6  { transition-delay: 1.4s; }
.letter-7  { transition-delay: 1.6s; }
.letter-8  { transition-delay: 1.8s; }
.letter-9  { transition-delay: 2.0s; }
.letter-10 { transition-delay: 2.2s; }
.letter-11 { transition-delay: 2.4s; }
.letter-12 { transition-delay: 2.6s; }
.letter-13 { transition-delay: 2.8s; }
.letter-14 { transition-delay: 3.0s; }

h1, h2 {
    visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

h1.transition-in,
h2.transition-in {
    visibility: visible;
}

h1 [class^="letter"],
h2 [class^="letter"] {
    opacity: 0;
}

h1.transition-in [class^="letter"],
h2.transition-in [class^="letter"] {
    opacity: 1;
}

#hovertreecontainer {
    display: table;
    position: absolute;
    z-index: 20;
    width: 100%;
    height: 100%;
    text-align: center;
    cursor: none;
    left: 15px;
}

#hovertreecontainer > div {
    display: table-cell;
    vertical-align: middle;
}

#hovertreecontainer p {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 25px;
    font-size: 12px;
    letter-spacing: 0.1em;
    font-weight: 300;
    color: white;
    -webkit-font-smoothing: subpixel-antialiased;
}

#hovertreecontainer p strong {
    color: #b3abc5;
    font-size: 5em;
}

#hovertreecontainer p span {
    padding: 0 2px;
}

#hovertreecontainer div p strong a {
    color: #999;
    font-size: 0.5em;
}

#canvas {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: none;
}

#stats {
    position: absolute;
    z-index: 10;
    left: 10px;
    top: 10px;
}

.dg.ac {
    z-index: 100 !important;
}