/* Style Settings */
@import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap');
:root {
    --bgColor: white;
    --accentColor: #ffc107;
    --font: 'Karla', sans-serif;
}

body{
    background-image: url(images/back.jpg);
}

#userPhoto{
    width: 200px;
    display: block;
    margin: 35px auto 20px;

}

#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;
}
.link{
    display: block;
    background-color: rgb(2,0,36);
    background-image:linear-gradient(90deg, rgba(218,48,38,1) 0%, rgba(204,64,64,1) 42%, rgba(176,37,37,1) 100%);
    color: #fff;
    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);
    
}

.link:hover{
    background-color: #043576;
    color: #fff;
}

.destaque{
    font-size: 16px;
}