html,
body {
    margin:0;
    padding:0;
    height:100%;
    font-family: "Segoe UI";
}
#container {
    min-height:100%;
    position:relative;
}
#header {
    padding:10px;
}
#body {
    padding:10px 0;
    padding-bottom:204px;   /* Height of the footer */
}
#footer {
    position:absolute;
    bottom:0;
    width:100%;
    height:204px;   /* Height of the footer */
}
h1 {
    font-weight:100;
    font-size:4em;
    color:#333;
    text-align:center;
}

h2 {
    font-weight: 300;
    color: #666;
    text-align:center;
    margin-bottom: 48px;
}

#myImg {
    height:300px;
    border-radius:150px;
    display: block;
    margin: auto auto;
}

.projectlink {
    height:150px;
    border-radius: 75px;
    margin: 0 12px;
    display: inline-block;
}

.projectlink:hover {
    cursor: pointer;
}

footer {
    width: 100%;
    height: 50px;
    background-color: #333;
}

footer ul {
    float: right;
    margin: 0;
}
footer ul li {
    display:inline-block;
}

footer ul li a {
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 300;

    height: 50px;
    line-height:50px;
    color: #FFF;
    padding: 0 12px;
}

footer ul li:hover {
    background-color: #16BDF5;
    cursor: pointer; 
}