/* Style Settings */
@import url('https://fonts.googleapis.com/css2?family=Karla:wght@700&display=swap');
:root {
    --bgColor:#131615;
    --specialColor: #38b6f1;
    --accentColor: #fff;
    --font: 'Karla', sans-serif;
}

body{
    background-color: var(--bgColor);
}

#userPhoto{
    width: 96px;
    height: 96px;
    display: block;
    margin: 35px auto 10px;
    border-radius: 50%;
}

#userName{
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    display: block;
    font-family: var(--font);
    width: 100%;
    text-align: center;
    text-decoration: none;
    margin-bottom: 30px;
}

#links{
    max-width: 320px;
    width: auto;
    display: block;
    margin: 27px auto;
    padding: 0 3px;
}
.link{
    display: block;
    background-color: var(--accentColor);
    color: var(--bgColor);
    font-family: var(--font);
    text-align: center;
    margin-bottom: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 20px;
    padding-right: 20px;
    height: 23px;
    text-decoration: none;
    font-size: 1rem;
    transition: all .25s cubic-bezier(.08,.59,.29,.99);
    border: solid var(--accentColor) 1px;
    border-radius: 200px;
}

.link:hover{
    background-color: var(--bgColor);
    border: solid var(--specialColor) 1px;
    color: var(--specialColor);
}

.icons{
    text-align: center;
}

.icon{
    width: 29px;
    height: 29px;
    display: inline-block;
    margin-right: 5px;
}
