body{
    background-color: rgb(30,30,30);
    text-align: center;

    -webkit-touch-callout: none; 
    -webkit-user-select: none; 
     -khtml-user-select: none; 
       -moz-user-select: none; 
        -ms-user-select: none; 
            user-select: none;
}
*, ::before, ::after {
    box-sizing: inherit;
}
.avatar{
    background-color: white;
    border-radius: 100%;
    width: 96px;
    height: 96px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px;
    padding: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
    font-size: 32px;
    font-weight: bold;
    font-family: 'Segoe UI', -apple-system, Helvetica;

    margin-top: 2%;
}
h1 {
    font-family: 'Segoe UI', -apple-system, Helvetica;
}
.container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.nick{
    color: whitesmoke;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    text-overflow: ellipsis;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    margin: 0px;
    display: block;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    margin-bottom: 2%;
}
.links {
    margin: 0px;
    background-color: rgba(255, 255, 255,0.8);
    margin-bottom: 16px;
    width: 640px;
    height: 21px;
    z-index: 0;
    overflow: hidden;
    margin-bottom: 16px;
    border: none;
    background-color: rgba(255, 255, 255, 0.8);
    color: rgb(0, 0, 0);
    transition: transform 0.15s cubic-bezier(0, 0.2, 0.5, 3) 0s;
    box-shadow: rgb(10 11 13 / 8%) 0px 2px 4px 0px;
    border-radius: 4px;
    padding: 17px;
    margin-left: auto;
    margin-right: auto;

    transition: ease .5s;
    -webkit-transition: ease .4s;
}
a {
    padding: 16px 20px;
    border: none;
    align-items: center;
    position: relative;
    
    font-family: 'Segoe UI', -apple-system, Helvetica;
    font-weight: 500;
}
.links:hover {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    cursor: pointer;
}