/* Style Settings */
@import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css');
:root {
    --bgColor:#1C1C1C;
    --accentColor: #E6E6E6;
    --font: 'Karla', sans-serif;
    --firstName: 'GLYTCH';
    --lastName: 'MOB';
}

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

#userPhoto{
    width: 110px;
    height: 110px;
    display: block;
    margin: 35px auto 20px;
    border-radius: 50%;
}

#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{
    max-width: 475px;
    width: auto;
    display: block;
    margin: 27px auto;
}
.link{
    display: block;
    color: #bbbbbb;
    font-family: var(--font);
    margin-bottom: 20px;
    padding: 17px;
    text-decoration: none;
    font-size: 1rem;
    transition: all .25s cubic-bezier(.08,.59,.29,.99);
    position: relative;
    font-weight: 200;
    text-align: center;
    letter-spacing: 1px;
    border-radius: 2px;
    border: 1px solid rgb(45, 45, 45);
    background-color: rgb(28, 28, 28);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 2px 3px;
}

.link:hover{
    background-color: var(--bgColor);
    color: var(--accentColor);
    background: radial-gradient(100% 100% at 0% 0%, rgba(255, 255, 255, 0.04), transparent);
    transition: all 0.1s ease-in 0s;
}
h5{
    text-align: center;
    margin-bottom: 20px;
    color: #E6E6E6;
    font-family: var(--font);
    font-style: italic;;
}
h1{
    text-align: center;

    background: -webkit-linear-gradient(top, rgb(255, 255, 255), rgb(165, 165, 165)) text;
    -webkit-text-fill-color: transparent;
    margin: 15px 0px 10px;
    font-weight: 400;
    letter-spacing: 2px;
    font-size: calc(1.375rem);
    text-transform: uppercase;
    
}
h6{
    text-align: center;
    margin-bottom: 20px;
    color: rgb(136, 136, 136);
    font-family: var(--font);
}
.atrib{
    text-align: center;
    display: block;
    font-size: 12px;
    margin-bottom: 20px;
    color: rgb(136, 136, 136);
    font-family: var(--font);
    margin-bottom: 20px;
    padding: 17px;
    text-decoration: none;
}

.button-class{
    display: flex; 
    justify-content: center; 
    gap: 5px;
}
.outlined-text {
    outline: 1px solid #40cf8e; /* Define the outline style, width, and color */
    display: inline-block;
    color: #40cf8e;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid var(--green);
    padding: 3px 6px;
    border-radius: 2px;
    background-color: rgba(64, 207, 143, 0.082);;
}

  
  .container {
    display: flex;
    justify-content: center;
    align-items: center; /* For vertical centering */
    gap: 15px;
    
}

