/* ignore shitty css pls thank :) */

:root {
    --background-color: #000000;
    --primary-color: #021219;
    --secondary-color: #05202a;
    --tertiary-color: #031420;
    --accent-color: #1d7073;
    color-scheme: dark;
}

@font-face {
    font-family: scientifica;
    src: url('/static/fonts/scientifica.ttf')
}


body {
    background-color: var(--primary-color);
    color: white;
    font-family: scientifica;
    margin: 0;
    min-height: 100%;
    width: 100%;
    overflow: hidden;
}

.body {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}


.content {
    flex: 1;
    background-color: var(--primary-color);
    padding: 2rem;
    padding-top: 1rem;
    overflow-y: auto;
}

.header-bar {
    font-size: 150%;
    display: flex;
    text-align: left;
    align-items: center;
    align-content: center;
    padding: 10px;
    margin: 0px;
    flex-shrink: 0;
    background-color: var(--background-color);
    padding-left: 2rem;
    padding-right: 2rem;

    a:hover {
        color: red;
    }
}

.header-bar iframe {
    align-self: center;
}

.current-page {
    font-size: 150%;
    font-weight: bold;
    margin: auto;
}

.header-bar-logo {
    height: 100%;
    width: fit-content;
    display: flex;
    align-items: center;
}

#header-bar-logo-image {
    margin-right: 0.5rem;
    width: 40px;
    height: 40px;
    image-rendering: pixelated;
}

#header-bar-text {
    margin: auto;
}

.side-bar {
    flex-shrink: 0;
    color: white;
    background-color: var(--secondary-color);
    height: 100%;
    overflow: auto;
}

#side-bar-header {
    background-color: var(--accent-color);
    font-size: 32px;
    padding: 40px;
    text-align: center;
}

.side-bar-element {
    padding: 5px;
    padding-right: 100px;
    display: flex;
    align-items: center;
    background-color: var(--background-color);
    color: white;
    height: auto;

}


a:link {
    color: white;
}

a:visited {
    color: white;
}

a:hover {
    color: white;
}

a:active {
    color: blue;
}

.side-bar-element-img {
    padding: 16px;
    width: 32px;
    height: 32px;
    image-rendering: pixelated;
}

.nav-back {
    margin-bottom: 2rem;
    padding: 0%;
    font-size: 150%;
    height: fit-content;
    float: top;
}

.nav-back p {
    margin: 0;
}

.now-listening {
    display: flex;
    margin: 0;
    padding: 0;
    height: 100px;
}


.now-listening p {
    margin: 0.5rem;
}

@media screen and (max-width: 600px) {
    .now-listening {
        display: none;
    }

    #side-bar-header {
        width: 100%;
        padding: 0px;
        height: fit-content;
    }

    #side-bar-header p {
        margin: 0px;
    }

    .side-bar {
        flex-flow: row wrap;
        overflow: auto;
        display: flex;
        height: fit-content;
        background-color: var(--background-color);
    }

    .side-bar-element {
        float: top;
        flex: 1;
        width: 100%;
        padding-right: 1rem;
    }

    .body {
        display: block;
        overflow: auto;
    }
}