body {
    font-family: 'Proxima Nova', proxima-nova, Arial, Helvetica, sans-serif;
    margin: 0;
    background-color: #ffffff;
    /* you can delete the line below if you'd prefer to not use an image */
    background-size: 65px;
    color: var(--color);
    background-image: var(--body-bg-image);
    --strong-text-color: var(--link);
}

* {
    box-sizing: border-box;
}

/* below this line is CSS for the layout */

/* this is a CSS comment
to uncomment a line of CSS, remove the * and the /
before and after the text */

#backbutton2 {
    display: inline-block;
    text-align: center;
    margin: 10px;
    margin-bottom: 10px;
}

/* the "container" is what wraps your entire website */
/* if you want something (like the header) to be Wider than
the other elements, you will need to move that div outside
of the container */
.container {
    padding: 5px;
    max-height: 100vh;
    height: 100vh;
    max-width: 100%;
    /* this is the width of your layout! */
    /* if you change the above value, scroll to the bottom
and change the media query according to the comment! */
    margin: 0 auto;
    /* this centers the entire page */
}

/* the area below is for all links on your page
EXCEPT for the navigation */
.container a {
    color: var(--strong-text-color);
    font-weight: bold;
    /* if you want to remove the underline
you can add a line below here that says:
text-decoration:none; */
}

#flex {
    display: flex;
    height: 100%;
}

/* this colors BOTH sidebars
if you want to style them separately,
create styles for #leftSidebar and #rightSidebar */
aside {
    background-color: var(--background);
    width: 27%;
    font-size: smaller;
    /* this makes the sidebar text slightly smaller */
    margin-right: 5px;
}


/* this is the color of the main content area,
between the sidebars! */
main {
    background-color: var(--background);
    flex: 1;
    order: 2;
    width: 73%;
    overflow-x: hidden;
    transition: width 0.5s;
    overflow: hidden;
}

/* what's this "order" stuff about??
allow me to explain!
if you're using both sidebars, the "order" value
tells the CSS the order in which to display them.
left sidebar is 1, content is 2, and right sidebar is 3! */


#leftSidebar {
    order: 1;
    transition: width 0.5s;
}

#rightSidebar {
    order: 3;
}

footer {
    /* background color for footer */
    width: 100%;
    text-align: center;
    /* this centers the footer text */
}

h1,
h2,
h3 {
    color: var(--strong-text-color);
}

h1 {
    font-size: 25px;
    margin-bottom: 8px;
    margin-top: 0;
}

tr {
    padding: 20px;
}

strong {
    /* this styles bold text */
    color: var(--strong-text-color);
}

/* this is just a cool box, it's the darker colored one */
.box {
    background-color: #13092D;
    border: 1px solid #ED64F5;
    padding: 10px;
}

/* CSS for extras */
.inset {
    margin:0px;
    border: 5px inset var(--inset);
    height: 100%;
    padding: 20px;
}

#charainset {
    padding: 0;
}

.outset {
    padding:0px;
    border: 5px outset var(--outset);
    height: 100%;
}


/* BELOW THIS POINT IS MEDIA QUERY */

/* so you wanna change the width of your page? 
by default, the container width is 900px.
in order to keep things responsive, take your new height,
and then subtrack it by 100. use this new number as the 
"max-width" value below
*/

@media only screen and (max-width: 800px) {
    #flex {
        flex-wrap: wrap;
    }

    aside {
        width: 100%;
    }

    /* the order of the items is adjusted here for responsiveness!
since the sidebars would be too small on a mobile device.
feel free to play around with the order!
*/
    main {
        order: 1;
    }

    #leftSidebar {
        order: 2;
    }

    #rightSidebar {
        order: 3;
    }

    #navbar ul {
        flex-wrap: wrap;
    }
}

table {
    margin-top: 10px;
    border-collapse: separate;
    border-spacing: 0 1em;
    width: 100%;
}

td {
    text-align: center;
    width: 33%;
}

table p {
    font-size: 13pt;
    margin-top: 5px;
}

#characterview {
    height: 83%;
    transition: height 0.5s;
}

#one {
    padding: 20px;
    overflow: scroll;
}

.open {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 20px;
    z-index: 15;
}

.open div {
    display: inline;
    background-color: var(--menucolor);
    color: var(--linkhover);
    padding: 10px;
    border-radius: 3px;
    margin-right: 3px;
}

.open a, .open a:visited, .open a:hover {
    color: var(--linkhover);
    text-decoration: none;
}

.characterpanel {
    position:relative;
    bottom: 0;
    width: inherit;
    height: 17%;
    padding: 12.5px;
    overflow-x: scroll;
    overflow-y: hidden;
    text-wrap:nowrap;
    border-color: var(--panel-border);
    border-style:dotted;
    border-width: 4px 0 0 0;
    transition: transform 0.5s;
}

#finset {
    padding: 0px;
}

.charaicon {
    text-align: center;
    display: inline-block;
    margin: 5px 10px 0 5px;
    width: 70px;
}

.charaicon img {
    height: 72px;
}

.charaicon p {
    margin: 0;
}

/* The following CSS applies on all screen sizes */

/* Colors and fonts */
:root {
    /* Fonts */
    --bodyfont: proxima-nova, 'Proxima Nova', proximanova, Helvetica, Arial, sans-serif;
    --headerfont: proxima-nova, 'Proxima Nova', proximanova, Helvetica, Arial, sans-serif;

    /* Main colors */
    --background: #e7eeff;
    /* Page background */
    --color: #001cce;
    --block: #f9f8f9;
    /* Background color for the grid blocks in the content */

    --link: #0000ff;
    --linkhover: #a649a9;

    --h1: #0000ff;
    --h2: #0000ff;
    --h3: #0000ff;
    --h4: #0000ff;

    /* Sidebar colors */
    --sidebar: #f9f8f9;
    --sidebarcolor: #2f152f;
    --title: #5a094a;
    --sidebarlink: #5a094a;
    --sidebarlinkhover: #a649a9;

    /* Menu colors */
    --menubg: #2c1a30;
    --menucolor: #e0aee2;
    --menubghover: #e0aee2;
    --menucolorhover: #2c1a30;

    --inset: #aad7f8;
    --outset: #9cabff;
    --panel-border: #8d9aea;
    --buttontextcolor: #a649a9;
    --buttoncolor: #e0aee2;

    --tippy-accent-color: black;
    --tippy-color-on-accent: white;
}

html {
    /* Fonts */
    --bodyfont: proxima-nova, 'Proxima Nova', proximanova, Helvetica, Arial, sans-serif;
    --headerfont: proxima-nova, 'Proxima Nova', proximanova, Helvetica, Arial, sans-serif;

    /* Main colors */
    --background: #e7eeff;
    /* Page background */
    --color: #001cce;
    --block: #f9f8f9;
    /* Background color for the grid blocks in the content */

    --link: #0000ff;
    --linkhover: #a649a9;

    --h1: #0000ff;
    --h2: #0000ff;
    --h3: #0000ff;
    --h4: #0000ff;

    /* Sidebar colors */
    --sidebar: #f9f8f9;
    --sidebarcolor: #2f152f;
    --title: #5a094a;
    --sidebarlink: #5a094a;
    --sidebarlinkhover: #a649a9;

    /* Menu colors */
    --menubg: #2c1a30;
    --menucolor: #e0aee2;
    --menubghover: #e0aee2;
    --menucolorhover: #2c1a30;

    --inset: #aad7f8;
    --outset: #9cabff;
    --panel-border: #8d9aea;
}

* {
    margin: 0;
    padding: 0;
}

/* Main body styling */
.characterbody {
    height: 100%;
    overflow: hidden;
    margin: 0;
    background-color: var(--background);
    background-attachment: fixed;
    font: 1rem var(--bodyfont);
    color: var(--color);
    width: 100%;
    position: relative;
}

/* Rounded corners - feel free to get rid of this or change it */

.characontent section,
.sidebar-content,
.main-footer {
    border-radius: 5px;
}

/* Sidebar styling */

.sidebar-content {
    text-align: center;
    background: #ffffff;
    color: var(--color);
    padding: 10px;
    filter: drop-shadow(10px 10px 0 var(--dark-accent));
}

.sidebar-content header {
    color: var(--title);
    font: 1.8em var(--headerfont);
    margin: 8px;
}

.sidebar-content p a {
    color: var(--accent-color);
    transition: 0.5s ease;
}

.sidebar-content p a:hover {
    color: var(--accent-color);
    transition: 0.5s ease;
}

.icon img {
    border-radius: 100%;
    /* This makes the icon a circle - feel free to remove or reduce for a rectangle or square */
    max-width: 150px;
    /* This can be changed to make the icon smaller; you might have to mess with the border radius too */
}

/* Styling for the menu */

.main-menu {
    font: 1.1em var(--headerfont);
    width: 100%;
}

.main-menu ul {
    list-style: none;
}

.main-menu li a, .main-menu li a:visited {
    padding: 7px;
    background: var(--link-bg);
    color: var(--color-on-bg);
    text-decoration: none;
    transition: 0.5s ease;
}

.main-menu li a:hover,
.main-menu li a:focus {
    background: var(--accent-color);
    color: var(--color-on-accent);
    transition: 0.5s ease;
}

/* Content styling */

.characontent {
    height: 100%;
    margin-top: 10px;
    overflow-y: scroll;
    overflow-x: visible;
    background-color: var(--background);
    padding-right: 20px;
  margin-right: -20px;
  width: 100%;
}   

/* Styling for blocks */

.characontent section,
.main-footer {
    padding: 15px;
    background-color: var(--block);
    margin-bottom: 10px;
}

.main-footer {
    margin-bottom: 50px;
    filter: drop-shadow(10px 10px 0 var(--dark-accent));
}

.characontent h2 {
    font: 1.5em var(--headerfont);
    color: var(--h2);
}

.characontent h3 {
    font: 1.3em var(--headerfont);
    color: var(--h3);
}

.characontent h4 {
    font: 1em var(--headerfont);
    font-style: italic;
    color: var(--h4);
}

.characontainer p {
    line-height: 1.5;
    margin: 10px 0 10px 0;
}

.characontent a {
    color: var(--link);
    transition: 0.5s ease;
}

.characontent a:hover,
.characontent a:focus {
    color: var(--linkhover);
    transition: 0.5s ease;
}

.characontent ul {
    list-style-position: outside;
    margin-left: 25px;
}

.characontent ul li {
    line-height: 1.5;
}

.characontent img {
    max-width: 100%;
}

.characontent input,
textarea,
select,
button {
    background: var(--block);
    color: var(--color);
    font: 1rem var(--bodyfont);
    border: 1px solid;
    padding: 8px;
    margin: 2px;
}

.main-footer {
    text-align: center;
}

/* The following CSS ONLY applies to mobile/small screens */

/* Container styling */
.characontainer {
    width: calc(100% - 20px);
    padding: 10px;
    margin-top: 10px;
    overflow: hidden;
    height: 100%;
}

.sidebar-content {
    width: calc(100% - 20px);
}

.main-menu li {
    margin-bottom: 15px;
    display: inline-block;
}

/* Skip to content button */

.skip a {
    position: absolute;
    display: inline-block;
    left: 0px;
    top: -1000px;
    overflow: hidden;
    transition: top 0.5s ease;
    background: var(--block);
    color: var(--link);
    z-index: 1000;
    padding: 5px;
}

.skip a:focus {
    top: 0;
    transition: top 0.5s ease;
}

.characontent section {
    filter: drop-shadow(10px 10px 0 var(--dark-accent));
}

/* The following CSS ONLY applies to desktop/big screens */

@media screen and (min-width: 800px) {
    .characontainer {
        width: 90%;
        margin: 25px auto;
        display: flex;
        gap: 20px;
    }

    .sidebar {
        flex: 1 1 calc(15% - 20px);
        margin-top: 10px;
    }

    /* Remove or comment out this block if you don't want a sticky sidebar */

    /* Make menu links into a column */

    .main-menu li {
        display: block;
        margin: 0;
    }

    .main-menu li a {
        display: block;
        border-bottom: 1px solid;
    }

    .characontent {
        flex: 1 1 calc(75% - 30px);
        display: flex;
        flex-wrap: wrap;
        gap: 25px;
    }

    .characontent section {
        margin: 0;
    }

    .main-footer {
        flex: 1 1 calc(100% - 50px);
    }

    /* Defining grid blocks */

    .full {
        flex: 1 1 calc(100% - 50px);
    }

    .half {
        flex: 1 1 calc(50% - 50px);
    }

    .third {
        flex: 1 1 calc(33% - 50px);
    }

    .twothird {
        flex: 1 1 calc(66% - 50px);
    }

    .quarter {
        flex: 1 1 calc(25% - 50px);
    }

    .threequarter {
        flex: 1 1 calc(75% - 50px);
    }

    .forty {
        flex: 1 1 calc(40% - 50px);
    }

    .sixty {
        flex: 1 1 calc(60% - 50px);
    }
}

#stella {
    --accent-color: #ac97de;
    --color-on-accent: #fdf6ff;
    --dark-accent: rgba(123, 104, 238, 0.5);
    --block-on-white: #eadef6;
    --graytext: #a49dc8;
    --color: #5b42cd;
    --background: rgb(219, 213, 242);
    --spinglebongle: rgb(206, 198, 238);
    --inset: #ac97de;
    --outset: #5b42cd;
    --link-bg: #513daa;
    --color-on-bg: #ead7ff;

    --sidebarcolor: #2f152f;
    --title: #5b42cd;
    --sidebarlink: #5a094a;
    --sidebarlinkhover: #a649a9;
    
    --buttontextcolor: #fdf6ff;
    --buttoncolor: #ac97de;

    --friendly-reserved: 11%;
    --polite-blunt: 27%;
    --clever-foolish: 40%;
    --sensitive-tough: 25%;
    --confident-diffident: 35%;
    --careful-reckless: 46%;
    --sincere-deceptive: 4%;
    --diligent-lazy: 17%;
    --calm-irritable: 23%;
    --hopeful-pessimistic: 22%;
    --organized-messy: 67%;
    --humorous-serious: 32%;
}

.blockheader {
    text-align: center;
    width: 100%;
    border-radius: 10px;
    background-color: var(--accent-color);
    color: var(--color-on-accent);
    height: 50px;
    line-height: 50px;
    font-weight: 700;
    font-family: var(--headerfont);
    font-size: 1.9em;
}

.subheader {
    text-align: left;
    width: 100%;
    border-radius: 10px;
    background-color: var(--block-on-white);
    color: var(--color);
    height: 40px;
    line-height: 40px;
    font-weight: 700;
    font-family: var(--headerfont);
    font-size: 1.25em;
    padding-left: 15px;
    letter-spacing: 1.5px;
}

.epicimage {
    background-image: url("../img/yume\ nikki\ ad.gif");

}

.fastfacts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 7px;
    margin-bottom: 15px;
}

.fastfact {
    padding: 5px;
}

.fastfact:not(.fastfacts div) {
    margin-bottom: 7px;
}

.material-symbols-rounded {
    font-size: 35px;
    background-color: var(--accent-color);
    border-radius: 10px;
    padding: 7px;
    color: var(--color-on-accent);
    margin-right: 3px;
    vertical-align: top;
}

.fastfactstext {
    display: inline-block;
    width: calc(100% - 50px);
}

.fastfactstext h2 {
    font-size: 9pt;
    font-weight: 600;
    text-transform:uppercase;
    letter-spacing: 1px;
    color: var(--graytext);
}

.fastfactstext p {
    margin: 0;
    font-size: 11pt;
}

.blockonwhite {
    background-color: var(--block-on-white);
    border-radius: 10px;
    padding: 15px;
}

.blockonwhite p {
    margin: 0;
    font-size: 10.5pt;
}

.traitbars {
    margin-top: 20px;
    display: grid;
    grid-template-rows: repeat(6, 1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.traitbar1, .traitbar2 {
    margin: 0 !important;
    display: inline-block !important;
    font-size: 11pt;
    letter-spacing: 1.5px;
    font-weight: 500;
}


.traitbartext {
    display: flex; 
    justify-content: space-between;
}

.traitbartext p {
    margin: 0 0 2px 0;
    font-size: 11pt;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.actualtraitbar {
    margin-top: 0px;
    width: 100%;
    height: 13px;
    border-radius: 10px;
}

.tb1 {
    background: linear-gradient(90deg, var(--block-on-white) calc(var(--friendly-reserved) - 2%), var(--color-on-accent) calc(var(--friendly-reserved) - 2%), var(--color-on-accent) calc(var(--friendly-reserved) - 1.5%), var(--accent-color) calc(var(--friendly-reserved) - 1.5%), var(--accent-color) calc(var(--friendly-reserved) + 1.5%), var(--color-on-accent) calc(var(--friendly-reserved) + 1.5%), var(--color-on-accent) calc(var(--friendly-reserved) + 2%), var(--block-on-white) calc(var(--friendly-reserved) + 2%))
}

.tb2 {
    background: linear-gradient(90deg, var(--block-on-white) calc(var(--polite-blunt) - 2%), var(--color-on-accent) calc(var(--polite-blunt) - 2%), var(--color-on-accent) calc(var(--polite-blunt) - 1.5%), var(--accent-color) calc(var(--polite-blunt) - 1.5%), var(--accent-color) calc(var(--polite-blunt) + 1.5%), var(--color-on-accent) calc(var(--polite-blunt) + 1.5%), var(--color-on-accent) calc(var(--polite-blunt) + 2%), var(--block-on-white) calc(var(--polite-blunt) + 2%));
}

.tb3 {
    background: linear-gradient(90deg, var(--block-on-white) calc(var(--clever-foolish) - 2%), var(--color-on-accent) calc(var(--clever-foolish) - 2%), var(--color-on-accent) calc(var(--clever-foolish) - 1.5%), var(--accent-color) calc(var(--clever-foolish) - 1.5%), var(--accent-color) calc(var(--clever-foolish) + 1.5%), var(--color-on-accent) calc(var(--clever-foolish) + 1.5%), var(--color-on-accent) calc(var(--clever-foolish) + 2%), var(--block-on-white) calc(var(--clever-foolish) + 2%));
}

.tb4 {
    background: linear-gradient(90deg, var(--block-on-white) calc(var(--sensitive-tough) - 2%), var(--color-on-accent) calc(var(--sensitive-tough) - 2%), var(--color-on-accent) calc(var(--sensitive-tough) - 1.5%), var(--accent-color) calc(var(--sensitive-tough) - 1.5%), var(--accent-color) calc(var(--sensitive-tough) + 1.5%), var(--color-on-accent) calc(var(--sensitive-tough) + 1.5%), var(--color-on-accent) calc(var(--sensitive-tough) + 2%), var(--block-on-white) calc(var(--sensitive-tough) + 2%));
}

.tb5 {
    background: linear-gradient(90deg, var(--block-on-white) calc(var(--confident-diffident) - 2%), var(--color-on-accent) calc(var(--confident-diffident) - 2%), var(--color-on-accent) calc(var(--confident-diffident) - 1.5%), var(--accent-color) calc(var(--confident-diffident) - 1.5%), var(--accent-color) calc(var(--confident-diffident) + 1.5%), var(--color-on-accent) calc(var(--confident-diffident) + 1.5%), var(--color-on-accent) calc(var(--confident-diffident) + 2%), var(--block-on-white) calc(var(--confident-diffident) + 2%));
}

.tb6 {
    background: linear-gradient(90deg, var(--block-on-white) calc(var(--careful-reckless) - 2%), var(--color-on-accent) calc(var(--careful-reckless) - 2%), var(--color-on-accent) calc(var(--careful-reckless) - 1.5%), var(--accent-color) calc(var(--careful-reckless) - 1.5%), var(--accent-color) calc(var(--careful-reckless) + 1.5%), var(--color-on-accent) calc(var(--careful-reckless) + 1.5%), var(--color-on-accent) calc(var(--careful-reckless) + 2%), var(--block-on-white) calc(var(--careful-reckless) + 2%));
}

.tb7 {
    background: linear-gradient(90deg, var(--block-on-white) calc(var(--sincere-deceptive) - 2%), var(--color-on-accent) calc(var(--sincere-deceptive) - 2%), var(--color-on-accent) calc(var(--sincere-deceptive) - 1.5%), var(--accent-color) calc(var(--sincere-deceptive) - 1.5%), var(--accent-color) calc(var(--sincere-deceptive) + 1.5%), var(--color-on-accent) calc(var(--sincere-deceptive) + 1.5%), var(--color-on-accent) calc(var(--sincere-deceptive) + 2%), var(--block-on-white) calc(var(--sincere-deceptive) + 2%));
}

.tb8 {
    background: linear-gradient(90deg, var(--block-on-white) calc(var(--diligent-lazy) - 2%), var(--color-on-accent) calc(var(--diligent-lazy) - 2%), var(--color-on-accent) calc(var(--diligent-lazy) - 1.5%), var(--accent-color) calc(var(--diligent-lazy) - 1.5%), var(--accent-color) calc(var(--diligent-lazy) + 1.5%), var(--color-on-accent) calc(var(--diligent-lazy) + 1.5%), var(--color-on-accent) calc(var(--diligent-lazy) + 2%), var(--block-on-white) calc(var(--diligent-lazy) + 2%));
}

.tb9 {
    background: linear-gradient(90deg, var(--block-on-white) calc(var(--calm-irritable) - 2%), var(--color-on-accent) calc(var(--calm-irritable) - 2%), var(--color-on-accent) calc(var(--calm-irritable) - 1.5%), var(--accent-color) calc(var(--calm-irritable) - 1.5%), var(--accent-color) calc(var(--calm-irritable) + 1.5%), var(--color-on-accent) calc(var(--calm-irritable) + 1.5%), var(--color-on-accent) calc(var(--calm-irritable) + 2%), var(--block-on-white) calc(var(--calm-irritable) + 2%));
}

.tb10 {
    background: linear-gradient(90deg, var(--block-on-white) calc(var(--hopeful-pessimistic) - 2%), var(--color-on-accent) calc(var(--hopeful-pessimistic) - 2%), var(--color-on-accent) calc(var(--hopeful-pessimistic) - 1.5%), var(--accent-color) calc(var(--hopeful-pessimistic) - 1.5%), var(--accent-color) calc(var(--hopeful-pessimistic) + 1.5%), var(--color-on-accent) calc(var(--hopeful-pessimistic) + 1.5%), var(--color-on-accent) calc(var(--hopeful-pessimistic) + 2%), var(--block-on-white) calc(var(--hopeful-pessimistic) + 2%));
}

.tb11 {
    background: linear-gradient(90deg, var(--block-on-white) calc(var(--organized-messy) - 2%), var(--color-on-accent) calc(var(--organized-messy) - 2%), var(--color-on-accent) calc(var(--organized-messy) - 1.5%), var(--accent-color) calc(var(--organized-messy) - 1.5%), var(--accent-color) calc(var(--organized-messy) + 1.5%), var(--color-on-accent) calc(var(--organized-messy) + 1.5%), var(--color-on-accent) calc(var(--organized-messy) + 2%), var(--block-on-white) calc(var(--organized-messy) + 2%));
}

.tb12 {
    background: linear-gradient(90deg, var(--block-on-white) calc(var(--humorous-serious) - 2%), var(--color-on-accent) calc(var(--humorous-serious) - 2%), var(--color-on-accent) calc(var(--humorous-serious) - 1.5%), var(--accent-color) calc(var(--humorous-serious) - 1.5%), var(--accent-color) calc(var(--humorous-serious) + 1.5%), var(--color-on-accent) calc(var(--humorous-serious) + 1.5%), var(--color-on-accent) calc(var(--humorous-serious) + 2%), var(--block-on-white) calc(var(--humorous-serious) + 2%));
}

.othertraits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
}

.trivia {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
}

.relationships {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 25px;
    margin-top: 17px;
    margin-bottom: 10px;
}

.relationship {
    text-align: center;
}

.relationship img {
    border-radius: 5px;
    width: 100%;
    width: 60%;
}

.relationship .blockonwhite {
    text-align: justify;
    letter-spacing: 0.3px;
}

.accentemp {
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 0.4px;
}

.charaital {
    font-style: italic;
    color: var(--graytext);
    letter-spacing: 0.8px;
}

.characontainer a, .characontainer a:hover, .characontainer a:visited {
    color: var(--accent-color);
}

.tippy-box[data-theme~='chara'] {
    background-color: var(--tippy-accent-color);
    color: var(--tippy-color-on-accent);
}

.tippy-box[data-theme~='chara'][data-placement^='top'] > .tippy-arrow::before {
    border-top-color: var(--tippy-accent-color);
  }

  .tippy-box[data-theme~='chara'] > .tippy-svg-arrow {
    fill: var(--tippy-accent-color);
  }

[data-tippy-content] {
    text-decoration: dotted underline;
}