* {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
}

html, body {
    font-family: 'Open Sans', sans-serif;
    display: table;
    height: 100%;
    width: 100%;
    text-align: center;
    background: black;
    color: rgb(200, 200, 200);
}
div {
    display: table-cell;
    vertical-align: middle;
    padding-top: 2em;
}

h1 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 2.5em;
    line-height: 1em;
    font-weight: lighter;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    cursor: pointer;
}

h6 {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

nav ul {
    list-style: none;
    margin: 0 auto;
    display: table;
}
nav li {
    display: inline-block;
    border-radius: 3px;
}
nav a {
    margin: 0px 5px;
    display: inline-block;
    text-decoration: none;
    color: rgb(200, 200, 200);
    padding: 10px;
    font-weight: lighter;
    font-size: 20px;
    transition: .20s;
}
nav a span {
    padding-top: 4px;
}
nav a:hover{
    background-color: rgb(200, 200, 200);
    color: black;
    border-radius: 3px;
}
nav li:active {
    color: white;
}
#avatar {
    margin-top: -35px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 0px solid white;
    transition: .25s;
}
#avatar:hover {
    box-shadow: 0px 0px 20px rgb(200, 200, 200);
}
