/* Style Settings */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap');
:root {
    --bgColor:#1C1C1C;
    --accentColor: #E6E6E6;
    --font: 'Roboto Mono', monospace;
    --gradient: linear-gradient(135deg, rgba(0,0,80,1) 0%, rgba(80,0,0,1) 100%);
}

body{
    background-color: var(--bgColor);
    background: var(--gradient);
    background-image: url('banner.jpg');
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(15px);
    margin: 0;
}

#container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
}

#photo-wrapper {
    width: 210px;
    height: 210px;
    display: block;
    border-radius: 50%;
    margin: auto;
    margin: 30px auto;
    overflow: hidden;
}

#userPhoto{
    width: 210px;
    height: 210px;
    margin: auto;
    object-fit: scale-down;
}

#userName{
    color: #bbb;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    display: block;
    font-family: var(--font);
    width: 100%;
    text-align: center;
    text-decoration: none;
}

#links{
    width: auto;
    display: block;
    margin: 27px auto;
}
.link{
    display: block;
    background-color: var(--accentColor);
    color: var(--bgColor);
    font-family: var(--font);
    text-align: center;
    margin-bottom: 20px;
    padding: 17px;
    text-decoration: none;
    font-size: 1rem;
    transition: all .25s cubic-bezier(.08,.59,.29,.99);
    border: solid var(--accentColor) 2px;
}

.link:hover{
    background-color: var(--bgColor);
    color: var(--accentColor);
}
