@font-face {
    src: url("https://file.garden/aZIs8P3ch2qR4upS/whitney-medium.otf");
    font-family: whitney;
}

:root {
    --bg-color: #393A41;
    --dark: #323339;
    --button: #44454C;
    --text: #f3f3f4;
    --text-caption: #b0b1b5;
    --accent: #5865f2;
}

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

body {
    background-color: var(--dark);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: none;
    font-family: whitney;
}

a {
    color: var(--accent);
}

a:hover {
    font-style: italic;
}

.card {
    border-style: solid;
    border-color: #45464f;
    border-width: 1.2px;
    border-radius: 12px;
    max-width: 500px;
    width: 80%;
    height: 600px;
    background-color: var(--bg-color);
    color: var(--text);
    filter: drop-shadow(0 0 0.75rem #242528)
}

.username {
    padding: 3%;
    font-size: 2em;
    bottom: 50px;
    position: relative;
    
}

.text {
    padding: 3%;
    font-size: 1.2em;
    bottom: 80px;
    position: relative;
    width: 10px;
    height: 10px;
}

.subtext {
    padding: 3%;
    font-size: 1em;
    bottom: 80px;
    position: relative;
    width: 400px;
}

.row {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

button {
    padding: 2.5%;
    font-size: 1em;
    bottom: 75px;
    left: 12px;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0 10px 0;
    background-color: var(--button);
    border-style: solid;
    border-width: 1px;
    border-radius: 12px;
    border-color: #46464f;
    color: var(--text);
    position: relative;
    transition: 0.2s ease;
}

button:hover {
    background-color: #41414a;
}

.role {
    background-color: var(--bg-color);
    border-color: var(--button);
    bottom: 0;
    left: -1px;
    width: fit-content;
    font-size: 0.9em;
}

.roleDot {
    margin: 0 8px 0 0;
    border-radius: 50%;
    height: 10px;
    width: 10px;
    background-color: var(--text-caption);
}

.role:hover {
    background-color: var(--bg-color);
    border-color: var(--button);
}

.friend {
    width: fit-content;
    background-color: var(--accent);
    border-color: #636ee6;
}

.friend:hover {
    background-color: #515cd4;
    border-color: var(--accent);
}

.banner {
    max-width: 500px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    object-fit: cover;
}

.pfp {
    height: 100px;
    border-radius: 50%;
    border-width: 10px;
    border-style: solid;
    border-color: var(--bg-color);
    bottom: 50px;
    left: 10px;
    position: relative;
}