@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&display=swap');




:root {
    --font: 'Bitter', sans-serif;
    --background: #564dffb4;
    --highlight: #7872d8;
    --white: #ffffff;
}

body{
    background-color: var(--background);
    color: var(--white);
}

footer{
    text-align: center;
    color:var(--white);
    font-family: var(--font);
    font-size: 0.8rem;
    font-weight: 700;
}

#userPhoto{
    width: 150px;
    height: 150px;
    display: block;
    margin: 35px auto 20px;

    border-radius: 50%;
    border: solid var(--white) 3px;
}

#userName{
    width: 100%;

    color: var(--white);

    font-family: var(--font);
    font-size: 2.4rem;
    font-weight: 300;

    text-align: center;
    text-decoration: none;

    line-height: 1.25;
    display: block;
}

#description{
    width: 100%;
    color: var(--white);
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    display: block;
}

.sort{
    width: 100%;
    color: var(--white);
    font-family: var(--font);
    font-size: 1.8rem;
    font-weight: 300;

    text-align: center;
    text-decoration: none;

    line-height: 1.25;
    display: block;
}

#links{
    max-width: 300px;
    width: auto;

    display: block;

    margin: 15px auto;
}
.link{
    display: block;
    margin-bottom: 10px;
    padding: 10px;

    background-color: var(--background);
    color:var(--white);

    font-family: var(--font);
    font-size: 1.10rem;
    font-weight: 500;

    border-radius: 5px;
    border: solid var(--white) 2px;

    text-align: center;
    text-decoration: none;
    
    transition: all .25s cubic-bezier(.08,.59,.29,.99);
    
}

.link:hover{
    background-color: var(--highlight);
    
    color: var(--white);
}

.background{
    z-index: -1;
    position: absolute;
}

.back{
    position: absolute;
    width: 100%;
    height: 110%;
    overflow: hidden;
    left: 0px;
    top: 0px;
    pointer-events:none;
    /*filter: blur(18px) brightness(1);*/
    z-index: -1;
    
}