html, body {
    height: 100%;
    height: 100vh;
}
body {
    min-height: 100%;
    padding: 0px;
    margin: 0px;
}
body {
    background-color: #888;
    background: -webkit-radial-gradient(circle,#555, #eee);
    background: radial-gradient(circle,#555, #eee);
    background-position: center center;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
}
a {
    text-decoration: none;
    color: #05d;
}
#mainContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    min-height: 100%;
    max-width: 750px;
    margin: 0px auto;
}
#mainContentBlock {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    padding: 20px;
}
#mainContent {
    background-color: #fff;
    box-shadow: 5px 5px 15px #888;
    margin: 0px auto;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
#avatarImage {
    min-width: 300px;
    min-height: 400px;
    max-height: 700px;
    background-image: url("../images/avatar.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
#mainContent #introBox {
    text-align: center;
    background-color: #f8f8f8;
    background: -webkit-radial-gradient(circle,#eee, #fff);
    background: radial-gradient(circle,#eee, #fff);
    margin-top: 0px;
    padding: 10px;
}
#mainContent #introBox h1 {
    text-shadow: 0px 3px 10px #aaa;
}

#mainContent #fullBioBox {
    padding: 20px 40px;
}
#linkBox {
    margin: 10px auto;
    padding: 0px;
    list-style: none;
    max-width: 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
#linkBox > li {
    margin: 5px;
    background-color: #888;
    padding: 6px;
    box-shadow: 0px 3px 10px #aaa;
}
#linkBox > li:hover {
    background-color: #05d;
}
#linkBox > li.featured a .description {
    color: #fff;
    padding-right: 2px;
}
#linkBox > li > a .description {
    display: none;
    font-size: 0.8em;
}
#linkBox > li.featured .description {
    display: inline;
}
div.footer {
    text-align: center;
    font-size: 0.8em;
    text-shadow: 1px 1px 2px #aaa;
}