:root {
    --highlightColor: #6515dd;
    --backgroundColor: #1c1c1c;
    --backgroundHighlight: #151515;
    --panelColor: #232323;
    --panelHighlight: #2f2f2f;
    
    --softTextColor: #aaaaaa;
    --textColor: #ffffff;

    --borderRadius: 10px;
}

* {
    /* font-family: 'Titillium Web'; */
    font-family: 'Kode Mono';
    padding: 0;
    margin: 0;
    color: var(--textColor);
}

body {
    background-color: var(--backgroundColor);
    color: #202121;
    overflow: hidden;
    height: 100vh;
}

main {
    overflow: auto;
    height: calc(100vh - 60px);
}


a {
    text-decoration: none;
}



h2 {
    font-size: 25px;
    color: var(--textColor);
}

.errorPage h2 {
    font-size: 50px;
    color: var(--softTextColor);
}

h3 {
    margin-bottom: 10px;
    color: var(--softTextColor);
    font-size: 0.8rem;
}

p {
    color: var(--textColor);
}

hr {
    border: 0;
    height: 1px;
    background-color: var(--panelHighlight);
}

svg {
    width: 24px;
}

#hiddenStuff {
    display: none;
}

.hiddenStuff {
    display: none;
}

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.centeredText {
    text-align: center;
}

.centered {
    margin-left: auto;
    margin-right: auto;
}

.horizontalScroll {
    line-height: 25px;
    max-width: 100%;
    text-wrap: nowrap;
    overflow: scroll;
}

.container {
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 20px;
    margin-right: auto;
    margin-left: auto;
    max-width: 900px;
    background-color: var(--panelColor);
    border-radius: var(--borderRadius);
    box-sizing: border-box;
}

/* Create a custom scrollbar */
*::-webkit-scrollbar {
    width: 5px; /* Width of the scrollbar */
    height: 5px; /* Width of the scrollbar */
}

*::-webkit-scrollbar-thumb {
    background-color: var(--panelHighlight); /* Color of the thumb */
    border-radius: 6px; /* Radius of the thumb */
    
}

main::-webkit-scrollbar-thumb {
    background-color: var(--backgroundHighlight); /* Color of the thumb */
    border-radius: 6px; /* Radius of the thumb */
    position: relative;
}

*::-webkit-scrollbar-track {
    background-color: transparent; /* Color of the track */
}

.row {
    display: flex;
    flex-wrap: nowrap; /* Prevent wrapping */
    justify-content: center;
}


/* Fixed-width columns */
.col-fixed {
    flex: 0 0 auto; /* Prevent growing or shrinking */
}

/* Flexible-width children */
.col-fill {
    flex: 1 1 auto; /* Allow to grow and shrink, taking available space */
}

.glow-effect, button:hover {
    box-shadow: 
        0px 0px 2px rgba(102, 0, 255, 1), 
        0px 0px 4px rgba(102, 0, 255, 1), 
        0px 0px 8px rgba(102, 0, 255, 1), 
        0px 0px 8px rgba(102, 0, 255, 1);
    border: solid 1px rgba(255, 255, 255, 0.3);
}

.soft-text {
    color: var(--softTextColor);
}

.large-text {
    font-size: large;
}
.x-large-text {
    font-size: 5rem;
}