body{background:#333}
body,a, a:visited{color:#fff;}
.content{
    padding:2vh 0;
    max-width:80vw;
}
/* Holds both the loading spinner and the users image once loaded */
.userpic_container{
    display:grid;
    justify-content:center;
    width:100%;
}
/* Equivalent of position:absolute without positioning issues */
.loader-hourglass,.userpic{
    grid-column:1;
    grid-row:1;
}
/*Users profile image*/
.userpic{
    display:block;
    width:150px;
    height:150px;
    border-radius:50%;
    margin-bottom:10px;
}
/*Shows a loading spinner when image is loading*/
.loader-hourglass{
    position:absolute;
    z-index:-1;
    width:100px;
    height:100px;
    margin-top:35px;
    margin-left:35px;
    opacity: 0.8;
}
.loader-hourglass:after{
    content:"";
    display:block;
    border-radius: 50%;
    width:0;
    height:0;
    box-sizing:border-box;
    border:40px solid #333;
    border-color:#333 transparent;
    animation:lds-hourglass 1.2s infinite;
}
@keyframes lds-hourglass {
    0% {
        transform: rotate(0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    50% {
        transform: rotate(900deg);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    100% {
        transform: rotate(1800deg);
    }
}
.displayname{
    margin:0;
    font-size: 1.5rem;
    text-shadow: 0px 0.001px 20px #00000090;
    font-weight:inherit;
}
.username{margin-top:0;}
.tagline{
    max-width:250px;
    margin:0 auto;
}
/*For long taglines (eg. instagram bio)*/
pre{
    font-family:inherit;
    white-space:pre-wrap;/*Since CSS 2.1*/
    white-space:-moz-pre-wrap;/*Mozilla since 1999*/
    word-wrap:break-word;/*Internet Explorer 5.5+*/
}
.link-list{margin-top:30px}
.link-list a{
    -webkit-user-select:none;
    -moz-user-select:none;
    user-select:none;
    display:block;
    max-width:100%;
    margin:2vh auto;
    padding:1.5vh 0;
    border-radius:10px;
    background:hsla(0, 0%, 0%, 0.1);
    border:1px solid #fff;
    transition:all 0.1s; 
}

.link-list a:hover {
    cursor:pointer;
    background:#eee;
    color:#111;
    font-weight:600;
}
.link-list a:active {border:2px solid #f08080}

@media only screen and (min-width:600px){
    .content{padding:3vw 0}
    /* Makes sure that "bio" is not too wide on desktop/tablet */
    .tagline{max-width:100%}
    /*=== Scrollbar CSS ===*/
    /*Firefox*/
    *{
      scrollbar-width:thin;
      scrollbar-color:#636363 #dbdbdb;
      scrollbar-color:#636363 hsla(0, 0%, 100%, 0.342)
    }
    /*Chrome, Edge, & Safari*/
    *::-webkit-scrollbar {width:10px}
    *::-webkit-scrollbar-track {background:hsla(0, 0%, 100%, 0.253)}
    *::-webkit-scrollbar-thumb {
      background:#636363;
      background:hsla(0, 0%, 39%, 0.507);
    }
    *::-webkit-scrollbar-thumb:hover {background-color: hsla(0, 0%, 30%, 0.9)}
    *::-webkit-scrollbar-thumb:active {background-color: hsla(0, 0%, 20%)}
  }

@media only screen and (min-width:900px){.link-list a{max-width:80%}}
@media only screen and (min-width:1200px){.link-list a{max-width:70%}}
@media only screen and (min-width:1500px){.link-list a{max-width:55%}}
@media only screen and (min-width:1800px){.link-list a{max-width:40%}}
@media only screen and (min-width:3000px){.link-list a{max-width:1000px}}/*Above 1440p*/