html, body {
    background: #1a1a1a;
    font-family: 'Play', sans-serif;
    margin: 0;
}

svg {
    width: 100%;
    height: 100%;
}

.stats {
    position: absolute;
    right: 20px;
    top: 20px;
}
#content {
    position: absolute;
    width: 260px;
    left: 20px;
    top: 20px;
}
#info {
    background: rgba(0,0,0,0.8);
    padding: 12px 10px;
    margin-bottom: 1px;
    color: #fff;
}
#info h1 {
    line-height: 22px;
    font-weight: 300;
    font-size: 18px;
    margin: 0;
}
#info h2 {
    line-height: 14px;
    font-weight: 300;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    margin: 0 0 6px 0;
}
#info a {
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px dotted rgba(255,255,255,0.2);
    margin-right: 4px;
    line-height: 20px;
    font-size: 10px;
    color: rgba(255,255,255,0.5);
}
#info a:hover {
    border-bottom: 1px dotted rgba(255,255,255,0.6);
    color: rgba(255,255,255,1.0);
}
.select {
    margin-bottom: 10px;
}
.select ul {
    padding: 0;
    margin: 0;
}
.select li {
    list-style: none;
    margin: 1px 0;
}
.select a {
    -webkit-transition: all 300ms ease-out;
    background: rgba(0,0,0,0.8);
    text-decoration: none;
    padding-left: 10px;
    line-height: 32px;
    font-size: 12px;
    display: block;
    color: rgba(255,255,255,0.5);
    opacity: 0.2;
}
.select a:hover,
.select a.active {
    color: rgba(255,255,255,1.0);
}
.select a.active {
    border-left: 4px solid #fff;
    opacity: 0.5;
}
#content:hover .select a {
    opacity: 1.0;
}
