html, body {
   min-height: 100%; 
}
body {
    background-color: rgb(255,255,255);
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.4em;
    font-weight: 300;
    font-family: Oswald, sans-serif; 
    color:rgb(0,0,0);
}
#container{
    display: block;
    position: absolute;
    width:100%;
    height:100%;            
}
#container canvas{
    display:block;
}

a{
    color:rgba(0,0,0,0.5);
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border-bottom: solid 1px rgba(0,0,0,0);
}

a:hover{
    color:rgba(0,0,0,1);
    border-bottom: solid 1px rgb(0,0,0);    
}

a:before{
    content:"•";
    margin-left:-7px;
    float:left;
}

p{
    padding:0;
    margin:0 0 1em 0;
}
#clicker{
    cursor: pointer;
    display: block;
    width:200px;
    height:200px;
    background-color: rgb(35,35,38);
    color:rgb(255,255,255);
    border-radius: 100px;
    position: absolute;
    left:50%;
    top:48%;
    margin-left: -100px;
    margin-top: -100px;
    text-align: center;
    line-height: 200px;
    font-size: 18px;
}
#sidebar{    
    width:220px;
    overflow: hidden;
    left:0;
    top:0;
    min-height:100%;
    position: absolute;
    background-color: rgb(110,205,225);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
#sidebar .hdr{    
    width:80%;
    display:block;
    margin-bottom: 1em;
}
#sidebar .icn{
    width:50%;
    display:block;    
}
#sidebar div{
    padding:15px 15px 25px 25px;
}
.hyphenate{
    text-align: justify;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -o-hyphens: auto;
    hyphens: auto;
}

@media only screen and (max-width: 640px) and (max-device-width: 640px){
    #clicker{
        left:60%;
    }
}