/* Style Settings */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
:root {
    --font: 'Roboto', sans-serif;
}

body {
    background-color: #12313d;
}

#userPhoto {
    width: 8rem;
    height: 8rem;
    display: block;
    margin: 2rem auto 1.5rem;
    border-radius: 50%;
}

#userName {
    color: #40B1D6;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25rem;
    display: block;
    font-family: var(--font);
    width: 100%;
    text-align: center;
    text-decoration: none;
}
#lastName {
    color: #40B1D6;
    font-size: 1rem;
    line-height: 1.25rem;
    display: block;
    font-family: var(--font);
    width: 100%;
    text-align: center;
    text-decoration: none;
    padding-bottom: 1rem;
}
#description {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.25rem;
    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: #344E57;
    color: #fff;
    font-family: var(--font);
    text-align: center;
    margin-bottom: 1.25rem;
    padding: 1.25rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all .25s cubic-bezier(.08, .59, .29, .99);
    border: solid var(--accentColor) 2px;
}

.link:hover {
    background-color: #40B1D6;
    color: #FFF;
    border: solid #344E57 2px;
}

.footer {
    text-align: center;
    font-size: 1.3rem;
}

.footer a {
    text-decoration:none;
}

.circulo {
    background: #344E57;
    border-radius: 52px;
    width: 38px;
    height: 38px;
    text-align: center;
    font-size: 10px;
    color: #FFF;
}

.circulo:hover {
    background: #40B1D6;
    color: #FFF;
    -webkit-box-shadow: 2px 2px 2px rgba(50, 50, 50, 0.77);
    -moz-box-shadow: 2px 2px 2px rgba(50, 50, 50, 0.77);
    box-shadow: 2px 2px 2px rgba(50, 50, 50, 0.77);
}
