/* Style Settings */
@import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap');
:root {
    --bgColor: #404040;
    --accentColor: #b5a0ff;
    --font: 'Karla', sans-serif;
}

body {
    background-color: var(--bgColor);
}

#userphoto {
    width: 192px;
    height: 192px;
    display: block;
    margin: 35px auto 20px;
}

#username {
    color: #dddddd;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.25;
    display: block;
    font-family: var(--font);
    width: 100%;
    text-align: center;
    text-decoration: none;
}

#bio {
    color: #dddddd;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.25;
    display: block;
    font-family: var(--font);
    width: 100%;
    text-align: center;
    text-decoration: none;
    margin: 5px auto;
}

#links {
    max-width: 675px;
    width: auto;
    display: block;
    margin: 27px auto;
}
.link {
    display: block;
    background-color: var(--accentColor);
    color: var(--bgColor);
    margin-bottom: 20px;
    padding: 17px 0;
    transition: all .25s cubic-bezier(.08,.59,.29,.99);
    border: solid var(--accentColor) 2px;
    text-decoration: none;
    text-align: center;
}

.link:hover {
    background-color: var(--bgColor);
    color: var(--accentColor);
}

#linklogo {
    width: 42px;
    height: 42px;
    margin-right: 8px;
    vertical-align: middle;
}

#linktext {
    vertical-align: middle;
    font-size: 1.5rem;
    display: inline-block;
    font-family: var(--font);
}
