div#circle {
    display: block;
    width: 200px;
    height: 200px;
    background: black;
    -moz-border-radius: 100px;
    -webkit-border-radius: 100px;
    border-radius: 100px;
    overflow: hidden;
    background-image: url(../resources/me.jpg);
    background-position: center;
    background-size: cover;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
}

p.aboutText {
    text-align: center;
    margin-bottom: 4px;
}

p.aboutText a {
    text-decoration: none;
    font-weight: normal;
    color: black;
}

p.aboutText:last-child {
    margin-bottom: 30px;
}