/*
    Mobile First
*/
body {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: #303030;
    color: #FFF;
    margin: 0;
    padding: 0;
    max-width: 100wh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    cursor: pointer;
    text-decoration: none;
    outline: none;
    color: inherit;
    display: inline-block;
}

main {
    text-align: center;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

#name {
    font-size: 4em;
    font-weight: 100;
}

#social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    padding: 20px 0;
}

.social-ul {
    padding: 0;
    list-style-type: none;
    text-align: right;
}

.social-li {
    display: inline-table;
    justify-content: center;
    padding: 0 30px;
}

/*
    Icons
*/
.fab, .fas {
    font-size: 4em;
}

.fa-heart {
    font-size: 0.8em;
    color: #FE2E2E;
}

/*
    Footer
*/
footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    padding: 20px 0;
}
