:root {
    --background-dark-color: #222831;
    --background-mid-color: #31363f;
    --background-accent-color: #76abae;
    --background-light-color: #eee;
    --font-color: #fff;
    --font-color-active: #4ff6ff;
    --icon-color: #fff;
    --accent-color: #ffce00;
    --accent-color2: #E32D2D;
    --shadow-color: #00000080;

    --gold-color: #ffca79;
    --silver-color: #c3ebff;
    --bronze-color: #ffa56f;

    --countdown-label-font-size: 12px;

    background-color: var(--background-dark-color);
    
    font-family: Roboto Flex !important;
    color: var(--font-color) !important;
}

html {
    scroll-behavior: smooth;
}

h1 {
    font-weight: 400;
    font-size: 48px;
    margin: 0;
}

h2 {
    font-weight: 400;
    font-size: 26px;
    margin: 0;
}

h3 {
    font-weight: 400;
    font-size: 16px;
    margin: 0;
}

h4 {
    font-weight: 400;
    font-size: 12px;
    margin: 0;
}

body {
    margin: 0;
}

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

.accent-text {
    font-family: Koulen !important;
    color: var(--font-color) !important;
}

.align-center {
    align-self: center;
}

.layout-horizontal {
    display: flex;
    flex-direction: row;
}

.layout-vertical {
    display: flex;
    flex-direction: column;
}

.layout-fill {
    display: flex;
    flex-grow: 1;
}

.button-icon {
    filter: invert(99%) sepia(0%) saturate(7500%) hue-rotate(215deg) brightness(102%) contrast(100%);
}

.shadow {
    text-shadow: 2px 2px 4px var(--shadow-color);
}

.tooltip-link {
    text-decoration: underline;
    text-decoration-style: dashed;
    cursor: help;
}

.no-underline {
    text-decoration: none;
}

.collapsed {
    display: none;
}