html, body {
    height: 100%;
    height: 100vh;
}

body {
    min-height: 100%;
    padding: 0;
    margin: 0;
}

body {
    background-color: #888;
    background: -webkit-radial-gradient(circle, #aaa, #111);
    background: radial-gradient(circle, #aaa, #111);
    background-position: center center;
    font-family: Arial, Helvetica, sans-serif;
    color: #ccc;
}

a {
    text-decoration: none;
    color: #2af;
}

#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: 0 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: #111;
    box-shadow: 5px 5px 15px #333;
    margin: 0 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: #080808;
    background: -webkit-radial-gradient(circle, #222, #111);
    background: radial-gradient(circle, #222, #111);
    margin-top: 0;
    padding: 10px;
}

#mainContent #introBox h1 {
    text-shadow: 0 3px 10px #444;
}

#mainContent #fullBioBox {
    padding: 20px 40px;
}

#linkBox {
    margin: 10px auto;
    padding: 0;
    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: 0 3px 10px #333;
}

#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 #666;
}

@media only screen and (max-width: 640px) {
    cloudflare-app[app="spotify"][data-position="expand"] {
        display: none;
    }
}