@font-face {
    font-family: Nordstern;
    src: url('assets/Nordstern-Normal.ttf');
}

@font-face {
    font-family: Nordstern-Bold;
    src: url('assets/Nordstern-Dunkel.ttf');
}

@font-face {
    font-family: Nordstern-Light;
    src: url('assets/Nordstern-Light.ttf');
}

:root {
    --theme-color-1: #10408d;
    /* --theme-color-1: #087990; */
    --theme-color-1-background: #027c9614;
    --color-like-list-group: #dee2e6;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

canvas {
    z-index: 2000 !important;
    /* for confetti */
}

.app {
    display: grid;
    min-height: 100vh;
}

a {
    color: inherit;
    opacity: .8;
    font-weight: 500;
}

.marked>*:last-child {
    margin-bottom: 0;
}

.marked h1 {
    font-size: 1.5rem;
}

.marked h2,
.marked h3,
.marked h4,
.marked h5,
.marked h6 {
    font-size: 1.25rem;
}

.marked h3 {
    color: #087990;
}

.marked pre {
    padding: 1em;
    /* border: 1px solid #00000055; */
    border-radius: 0.5em;
    background: #00000008;
    color: var(--theme-color-1);
}

.marked blockquote {
    border-left: 0.25em solid #00000055;
    padding-left: 1em;
    margin-left: 0;
    opacity: 0.8;
}

.clickable {
    cursor: pointer !important;
}

.cohorts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
}

.logo-name {
    font-family: Nordstern-Light, sans-serif;
}

.logo-name-bold {
    font-family: Nordstern-Bold, sans-serif;
}

.logo-name,
.logo-name-bold {
    font-size: 24px;
}

.splash-background {
    background-image: url(assets/background.jpg);
    background-size: cover;
    background-position: center;
}

.text-theme-color-1 {
    color: var(--theme-color-1);
}

input:focus:not([type="checkbox"]),
textarea:focus {
    box-shadow: none !important;
    border: 1px solid var(--theme-color-1) !important;
    background-color: var(--theme-color-1-background) !important;
}

.input-white:focus {
    background-color: white !important;
    padding: 0.375rem 0.75rem !important;
}

.list-group-item.active {
    background-color: #413f42 !important;
    color: white;
    opacity: 1 !important;
    border: none;
    margin: 0 !important;
}

.list-group-item.active * {
    opacity: 1 !important;
}

.list-group-item-action:hover:not(.active) {
    background-color: rgb(255, 193, 7) !important;
    color: black;
    opacity: 1 !important;
    border: none;
    margin: 0 !important;
    cursor: pointer;
}

.border-like-list-group {
    border-color: var(--color-like-list-group);
}

.firebase-emulator-warning {
    display: none;
}

@media only screen and (max-width: 650px) {
    .cohorts-grid {
        grid-template-columns: 1fr;
    }
}