@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

html {
    scroll-behavior: smooth;
}
body {
    background-color: #1f1612;
	background-position: unset;
    background-image: url('../cdn/img/background.webp');
    background-size: 100vw;
	background-repeat: repeat;
    text-align: center;
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: large;
    color: white;
    padding: 0;
    margin: 0;
}
a {
    margin-left: 18px;
    padding: 4px 8px;
    border-radius: 6px;
    border: 0;
    /*background-color: #1e1e1e;*/
    color: white;
    font-weight: 700;
    font-family: "Nunito", sans-serif;
    font-size: large;
    cursor: pointer;
    transition: all 0.1s;
    display: flex;
    align-items: center;
    gap: 4px;
    text-align: left;
    text-decoration: none;
}
a:hover {
    background-color: #52352a;
    border-left: white 4px solid;
}
a:active {
    background-color: #724b3c;
}
.idkwhattocallthis {
    margin: 0;
    transition: all 0.1s;
}
#snackbar {
    transition: opacity 0.2s ease-in-out;
    opacity: 0;
    max-width: 90%;
    background-color: #30221d;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 20px;
    position: fixed;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: 32px;
    z-index: -1;
    font-size: x-large;
}
#snackbar.show {
    opacity: 1;
}
.button {
    background-color: #3f2921;
    margin: 0;
    padding: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.empty {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}
.empty:hover {
    background: none;
    border: none;
}
ol {
    border-radius: 6px;
    padding: 12px 32px;
    background: #36241da5;
}

.blur {
    border-radius: 6px;
    padding: 2px 16px;
    background: #36241da5;
}

.sidebar {
    text-align: left; 
    height: 100vh;
    width: 288px;
    padding: 12px;
    background-color: #36241d59;
    position: fixed;
    top: 0;
    left: 0;
    font-size: 0.75em;
    box-sizing: border-box;
    box-shadow: 2px 0 5px #36241d;
    backdrop-filter: blur(8px);
    z-index: 9999;
    transition: left 0.5s ease-in-out;
    @media screen and (max-width: 880px) {
        left: -308px;
        box-shadow: none;
    }
}
.sidebar.show {
    left: 0;
}
.sidebar a {
}
#sidebar-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}
#sidebar-top {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}
#sidebar-contents {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}
#sidebar-contents span {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 4px;
}
#sidebar-contents span a {
    width: 100%;
}
#sidebar-bottom {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    padding: 12px;
}
#logo-container {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}
#logo {
    justify-content: center;
    transition: all 0.2s;
}
#logo:hover {
    filter: drop-shadow(0px 0px 5px #fff);
}
#hidesidebar {
    display: none;
    height: 100vh;
    width: 20px;
    background-color: #5f3e3359;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: -20px;
    top: 0;
    cursor: pointer;
    @media screen and (max-width: 880px) {
        display: flex;
    }
}

#hamburger {
    display: none;
    position: fixed;
    top: 32px;
    left: 32px;
    z-index: 999;
    background-color: #41281fcc;
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    padding: 6px;
    aspect-ratio: 1 / 1;
    @media screen and (max-width: 880px) {
        display: block;
    }
}
#hamburger-img {
    display: block;
    transition: all 0.1s;
}
#hamburger-img:hover {
    filter: drop-shadow(0px 0px 5px #fff);
}

.content {
    left: 288px;
    width: calc(100% - 288px);
    position: relative;
    display: flex;
    justify-content: center;
    @media screen and (max-width: 880px) {
        left: 0;
        width: 100%;
    }
}
#innercontent {
    text-align: left;
    margin: 0 15%;
    @media screen and (max-width: 600px) {
        margin: 0 16px;
        width: calc(100% - 32px); /*mobile for some reason needs this :shrug:*/
    }
}
#container {
    background-color: #36241d59;
    backdrop-filter: blur(8px);
    padding: 2px 32px 24px 32px;
    border-radius: 12px;
}
#welcomecontainer {
    display: flex;
    justify-content: center;
    align-items: center;
    @media screen and (max-width: 1230px) {
        flex-direction: column;
        margin-bottom: 12px;
    }
}
#welcometxt {
    font-size: 2em;
    text-align: center;
}