:root {
    --background-color: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    --text-color: #e0e0e0;
    --header-background-color: linear-gradient(145deg, #2a2a2a, #111111);
    --console-background: linear-gradient(145deg, #1f1f1f, #101010);
    --navBar-color: #10101;
    --sidebar-color: #000;
}

body {
    background: var(--background-color);
    color: var(--text-color);
    background-attachment: fixed;
}

#sidebar {
    transition: 0.3s ease-in;

    position: fixed;
    top: 0;
    left: 0;
    width: 15vw;
    height: 100vh;
    background: var(--sidebar-color);
    z-index: 1;
}


#sidebarItems {
    color: var(--text-color);
    z-index: 2;
    vertical-align: center;
    text-underline: var(--text-color);

    height: 100%;
    position: absolute;
    display: flex;
    flex-direction: column;

    list-style: none;

    opacity: 1;
    transition: opacity 1s ease;
}

#sidebarItems a:hover {
    text-shadow: 0 0 8px var(--text-color);
    transform: scale(1.2);
    transition: font-size 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
    cursor: pointer;
}

#sidebarItems.fade-out{
    transition: opacity 0.2s ease;
    opacity: 0;
}

#sidebarItems li {
    padding-top: 10vh;
    font-size: 4vh;
}

#sidebarItems a {
    font-family: inherit;
    text-decoration: inherit;
    color: inherit;
    font-weight: bold;
    display: inline-block;
    font-family: "Agency FB";
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

#sidebarButton {
    font-size: 32px;
    padding-left: 16px;
    position: fixed;
    cursor: pointer;
    user-select: none;
}

#Logo{
    font-size: 6vh;
    position: fixed;
    top: -3vh;
    right: 5vh;
}

#themeSelector{
    position: fixed;
    bottom: 5vh;
    background: var(--console-background);
    border-radius: 12px;
    margin-top: 10vh;
    color: var(--text-color);
}

.navBar {
    position: fixed;
    height: 9vh;
    top: 0;
    left: 0;
    font-size: 64px;
    font-family: "Agency FB";
    background-color: var(--navBar-color);
    width: 100%;
    padding-bottom: 1vh;
    z-index: 1;
    transition: 0.3s ease-in;
}

.navBar #pageID{
    font-size: 6vh;
    position: fixed;
    top: -3vh;
}

#main{
    transition: 0.3s ease-in;
}

.consoleHeader {
    font-family: "Agency FB";
    font-size: 64px;
    margin: 0;
    border: black;
    background: var(--header-background-color);
    color: var(--text-color);
    transition: background 0.3s, color 0.3s;
    text-align: center;
    border-radius: 0 5vw 0 0;
}

.consoleRow {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.consoleFrame {
    border: black solid 4px;
    border-radius: 1vh 5vw 2vh;
    display: flex;
    flex-direction: column;
    width: 25vw;
    height: 32vh;
    font-family: "Agency FB";
    background-color: var(--console-background);
    margin-bottom: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    transition: background 0.3s, color 0.3s;
}

.consoleFrame hr {
    border: none;
    border-top: black solid 4px;
    margin: 0;
    font-weight: bolder;
    text-align: center;
    text-decoration: none;
}

.consoleFrame img {
    width: 20vw;
    margin: 1vh 0 1vh 4vh;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.consoleHeader a {
    font-family: inherit;
    text-decoration: inherit;
    color: inherit;
    font-weight: bold;
    display: inline-block;
    font-family: "Agency FB";
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.consoleHeader a:hover {
    text-shadow: 0 0 8px var(--text-color);
    transform: scale(1.2);
    transition: font-size 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
    cursor: pointer;
}

.consoleFrame img:hover {
    box-shadow: 0 0 15px var(--text-color);
    transform: scale(1.05);
    transition: font-size 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}