/* Style Settings */
@import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap');

body{
    background-color: #EEEEEE;
    color: #2F2F2F;
}

#userPhoto{
    width: 96px;
    height: 96px;
    display: block;
    margin: 35px auto 20px;
    border-radius: 50%;
}

#userName{
    color: #2374AB;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    display: block;
    font-family: 'Karla', sans-serif;
    width: 100%;
    text-align: center;
    text-decoration: none;
}

#links{
    max-width: 675px;
    width: auto;
    display: block;
    margin: 27px auto;
}
.link{
    display: block;
    background-color: #EEEEEE;
    color: #CC0000;
    font-family: 'Karla', sans-serif;
    text-align: center;
    margin-bottom: 20px;
    padding: 17px;
    text-decoration: none;
    font-size: 1rem;
    transition: all .25s cubic-bezier(.08,.59,.29,.99);
    border: solid #CC0000 2px;
}

.link:hover{
    background-color: #CC0000;
    color: #EEEEEE;
}
