/* Style Settings */
@import url('https://fonts.googleapis.com/css2?family=Caprasimo&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --bgColor: #f8eacd;
    --accentColor: #3C7F72;
    --font: 'Inter', sans-serif;
    --headerFont: 'Caprasimo', serif;
    --textColor: #ffffff;
    --accentColor: #3c7f72;
    --textHover: #9efbe4;
}

body {
    background-color: var(--bgColor);
    margin: 0px 1rem;
}

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

#userName {
    color: #000000;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.25;
    display: block;
    font-family: var(--headerFont);
    width: 100%;
    text-align: center;
    text-decoration: none;
    margin: 1.5rem auto 2rem auto;
}

#links {
    max-width: 675px;
    width: auto;
    display: block;
    padding: 1.5rem auto;
    margin: 0 auto 5rem auto;
}

.link {
    display: block;
    background-color: var(--accentColor);
    color: var(--textColor);
    font-family: var(--font);
    text-align: center;
    margin-bottom: 20px;
    padding: 17px;
    text-decoration: none;
    font-size: 1.15rem;
    /*transition: all .25s cubic-bezier(.08,.59,.29,.99);*/
    border: solid var(--accentColor) 2px;
    letter-spacing: 2px;
    border-radius: 5px;

}

.link:hover {
    color: var(--textHover);
    text-decoration: underline;
}

.userName:hover {
    text-decoration: underline;
}