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

body{
    background-color: var(--bgColor);
    background-image: url('imgs/background.jpg');
    background-position: center top;
}

#userPhoto{
    width: 96px;
    height: 96px;
    display: block;
    margin: 35px auto 20px;
    border-radius: 50%;
    border: solid var(--bgColor) 2px;
}

#userName{
    color: var(--bgColor);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.25;
    display: block;
    font-family: var(--font);
    width: 100%;
    text-align: center;
    text-decoration: none;
    text-shadow: 0 0 3px #FF0000, 0 0 5px #009DDC;
}

#links{
    position:absolute;
    width:300px;
    height:466px;
    bottom:0px;
    right:25%;
    left:50%;
    margin-left:-150px;
}

.link{
    display: block;
    background-color: var(--bgColor);
    color: var(--accentColor);
    font-family: var(--font);
    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 var(--hoverColor) 3px;
}

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