*{
    margin: 0;
    padding: 0;
    border: 0;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    text-decoration: inherit;
    line-height: inherit;
    color: inherit;
}

html, body{
    font-family: "Helvatica Neue", Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 30px;
    color: #fff;
    text-shadow: 1px 1px 0px #444;
}

body{
    text-align: center;
    background-image: url("background.jpg");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

h1{
    font-size: 36px;
    line-height: 50px;
    font-weight: bold;
}

.hero{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 0;
}

.hero img{
    width: 100%;
    height: 100%;
}

.headshot{
    width: 500px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    transition: transform 4s, box-shadow 4s;
}

.headshot:hover{
    transform: rotate(360deg);
    box-shadow: 0px 0px 50px 25px blue,
                0px 0px 50px 10px lightblue;
}

section{
    border-top: 2px dashed #eee;
    padding: 50px 0;
    max-width: 800px;
    margin: 0 auto;
}

.row 
{
    display: flex;
    position: relative;
    left: -181.425px;
}
.column
{
    flex: 33.33%;
    padding: 5px;
}

a{
    color:#58b;
    font-size: 30px;
}

a:hover{
    color:#369;
}

#projectsList
{
    text-align: center;
    list-style-position: inside;
}

#email
{
    font-size: 18px;
}