div, span, body, img, p, h1, ul, li {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}
body {
    background-color: azure;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}
#wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}
#content {
    position: relative;
    border: 2px solid darkgrey;
    border-radius: 1em;
    background-color: white;
    width: fit-content;
    max-width: 50vw;
    padding: 1em;
}
#headshot {
    content:url(/images/headshot.jpg);
    position: absolute;
    height: 100px;
    width: 100px;
    top: -25px;
    left: -25px;
    border-radius: 3em;
}
.intro {
    margin-left: 6em;
    text-align: left;
    text-align: left;
    padding: 1em;
}
#favorites::before, #favorites::after {
    content: "\1F3B6";
    padding: 0 1px 0 1px;
    font-size: .5em;
}
ul.links {
    flex-flow: row wrap;
}
ul.links li {
    margin: 2em .5em;
    display: inline-block;
}
ul.links a {
    padding: 2em;
    background-size: 4em;
    background-position: left center;
    background-repeat: no-repeat;
}
a.linkedin {
    background-image: url(/images/linkedin.png);
}
a.twitter {
    background-image: url(/images/twitter.png);
}
a.github {
    background-image: url(/images/github.png);
}
a.stackoverflow {
    background-image: url(/images/stackoverflow.png);
}
#ggb {
    background-image: url(/images/ggb.svg);
    background-size: cover;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}