/* Style Settings */
@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@100..900&display=swap');

.background-image {
    transform: scale(1.1);
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    -webkit-filter: blur(5px) brightness(30%);
    -moz-filter: blur(5px) brightness(30%);
    -o-filter: blur(5px) brightness(30%);
    -ms-filter: blur(5px) brightness(30%);
    filter: blur(5px) brightness(30%);
    background: url('../images/bg.png');
    background-attachment: fixed;
    background-color: rgba(255, 255, 255 0.5);
    background-repeat: no-repeat;
    background-size:     cover;
    background-repeat:   no-repeat;
    background-position: center center;   
    backdrop-filter: blur(10px);
    background-color: #000000;
  }

.content {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 9999;
    margin-left: 20px;
    margin-right: 20px;
  }

body {
    font-family: "Catamaran", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    height: 100%;
}

#userPhoto {
    width: 100px;
    height: 100px;
    display: block;
    margin: 10px auto;
    margin-top: 40px !important;
    border-radius: 80%;
}

#userName {
    color: #fff;
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
}

#userName h1 {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.2rem;
    margin: 0 auto;
}

#userName p {
    font-weight: 300;
    margin-top: 5px;
    text-transform: none;
}

i.fa {
    margin-right: 0.3rem;
}

#links {
    max-width: 500px;
    width: auto;
    display: block;
    margin: 20px auto;
}

.link {
    display: block;
    background-color: rgba(135, 0, 0, 0.2);
    color: #fff;
    text-align: center;
    margin: 10px auto 10px auto !important;
    width: 200px;
    padding: 12px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 300;
    transition: all .25s cubic-bezier(.08, .59, .29, .99);
    border-radius: 10px;

}

.link:hover {
    background-color: rgba(255, 161, 251, 0.3);
    color: #000000;
    border: none;
}