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

body{
    background-color: #031926;
    *height: auto; /* Used to enable scrolling */
    *background: color(100,204,161);
    *background: linear-gradient(0deg, rgba(80,14,98,1) 0%, rgba(38,148,69,1) 100%); 
}
#userPhoto{
    width: 96px;
    height: 96px;
    display: block;
    margin: 35px auto 20px;
    border-radius: 50%;
}

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

#links{
    max-width: 675px;
    width: auto;
    display: block;
    margin: 27px auto;
    margin-bottom: 50px;
}
.link{
    display: block;
    background-color: var(--accentColor);
    color: var(--bgColor);
    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-radius: 5px;    
    border: solid var(--accentColor) 2px;

}

.link:hover{
    background-color: var(--bgColor);
    color: var(--accentColor);
}
.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #8C1C13;
  color: white;
  text-align: center;
}
a:link { text-decoration: none; 
}
a:visited { text-decoration: none; 
}
a:hover { text-decoration: none; 
}
a:active { text-decoration: none; 
}