body {
    background-color: black;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: Inter-V;
}

.container {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.tree {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    width: 500px;
    height: auto;
    max-height: 100%;
    justify-content: center;
    align-items: center;
}

.tree .showcase {
    position: relative;
    width: 100%;
    min-height: 50px;
    background-color: rgba(25, 25, 25, 0.65);
    color: white;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    overflow: hidden;
}

.tree .showcase.no-background {
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.tree .showcase.profile {
    display: flex;
}

.tree .showcase.tapecorps-brand {
    margin-top: 20px;
    display: flex;
    column-gap: 10px;
    justify-content: center;
    align-items: center;
}

.tree .showcase.links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: calc(100% - 20px);
    padding: 5px 10px;
    column-gap: 5px;
    row-gap: 5px;
}

.tree .showcase.profile .information {
    margin: 15px 15px 15px 5px;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.tree .showcase.profile .information .username {
    display: flex;
    column-gap: 5px;
    align-items: center;
    font-size: 12pt;
    font-weight: bold;
    color: rgb(211, 211, 211);
}

.tree .showcase.profile .information .realname {
    font-size: 14pt;
}

.tree .showcase.profile .information .biography {
    font-size: 12pt;
}

.tree .showcase.profile .information .biography .mention {
    user-select: none;
    text-decoration: none;
    -webkit-user-select: none;
}

.tree .showcase.profile .information .biography .mention a {
    font-weight: bold;
    color: rgba(155, 155, 155, 0.85);
    transition: 0.2s;
    user-select: none;
    text-decoration: none;
    -webkit-user-select: none;
}

.tree .showcase.profile .information .biography .mention a:hover {
    color: rgba(155, 155, 155, 0.55);
}

.tree .showcase.profile .information .badges {
    display: flex;
    column-gap: 5px;
    align-items: center;
}

.tree .showcase.profile .information .badges img {
    width: 20px;
    height: 20px;
}

.tree .showcase .profile-photo {
    position: relative;
    margin: 15px;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 2px solid white;
    overflow: hidden;
    flex-shrink: 0;
}

.tree .showcase .profile-photo img {
    width: 100%;
    height: 100%;
}

.tree .showcase .link {
    background-position: center;
    background-size: cover;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    opacity: 1;
    transition: 0.2s;
}

.tree .showcase .link:hover {
    opacity: 0.6;
}

.tree .showcase.media img {
    width: 100%;
    height: auto;
}


.tree .showcase.tapecorps-brand img {
    width: 30px;
    height: 30px;
}

.tree .showcase.tapecorps-brand a {
    color: rgb(197, 197, 197);
    text-decoration: none;
    transition: 0.2s;
}

.tree .showcase.tapecorps-brand a:hover {
    color: rgb(247, 247, 247);
}