@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700&display=swap');


:root {
    --font-size: 2em;
    --h1-font-size: calc(var(--font-size) * 1.5);
    --h2-font-size: calc(var(--font-size));
    --primary-color: #ddd;
    --secondary-color: #ada;
    --background-color: #111;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: var(--font-size);
    background-color: var(--background-color);
    color: var(--primary-color);
    overflow: hidden;
    display: flex;
    justify-content:center;
    align-items:center;
}
html {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}
a {
    color: var(--secondary-color);
}

a:hover {
    color: var(--secondary-color);
}

a:visited {
    color: var(--secondary-color);
}

a.folder {
    text-decoration: none;
}
a.link {
    color: var(--primary-color);
    text-decoration: none;
}


h1 {
    font-size: var(--h1-font-size);
}

h2 {
    font-size: var(--h2-font-size);
}

.contentContainer {
    padding: 20px;
}

.tab {
    text-indent: 1em;
}


.noWrap {
    white-space: nowrap;
}

.verticalSpacer {
    width: 4px;
    height: 100dvh;
    background-color: #ddd;
}

.speechBubble {
    background-color: #333;
    border-radius: .7em;
    width: fit-content;
    padding: 0.3em;
}

.lip {
    position: relative;
    top: -0.7em;
    width: 0;
    height: 0;
    border: 0.5em solid transparent;
    border-top: 0.5em solid #333;
    border-left: 0.5em solid #333;
}

.skyrimImg {
    width: 100%
}

#pageContainer {
    position: relative;
    width: 100vw;
    height: 100dvh;
    display: flex;
    align-items:top;
    border-style: solid;
    border-width: 8px;
}


#tree {
    width: fit-content;
}

#content {
    width: fit-content;
    overflow-y:auto;
}
#content::-webkit-scrollbar {
    color:#0000;
}
