/* html {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
} */

#hiddenDescription {
    display: none;
}

body {
    width: 95vw;
    height: 100vh;
    background-color: var(--bg);
    opacity: 0.8;
    background: radial-gradient(circle, transparent 20%, var(--bg) 20%, var(--bg) 80%, transparent 80%, transparent), radial-gradient(circle, transparent 20%, var(--bg) 20%, var(--bg) 80%, transparent 80%, transparent) 10px 10px, linear-gradient(var(--bgv) 0.8px, transparent 0.8px) 0 -0.4px, linear-gradient(90deg, var(--bgv) 0.8px, var(--bg) 0.8px) -0.4px 0;
    background-size: 20px 20px, 20px 20px, 10px 10px, 10px 10px;
    color: var(--fg);
    transition: all 0.2s;
    font-family: 'Courier New', Courier, monospace;
    font-size: large;

    user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;

    /* margin: 0; */
    margin: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    box-sizing: border-box;
    /* overflow-x: hidden; */
}

#voidSection {
    height: 3em;
}

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

.valign {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

nav {
    top: 0;
    left: 0;
    position: absolute;
    box-sizing: border-box;
    width: calc(100vw - 8px);
    /* width: 100vw; */
    padding: 8px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.textButton {
    box-sizing: border-box;
    font-weight: 900;
    font-size: 1em;
    transition: all 0.2s;
}

.verysmall {
    font-size: x-small;
}

.navSvgBtn {
    height: 23px;
    width: 23px;
    margin-right: 12px;
    margin-left: 12px;
    filter: var(--svgn);
    transition: all 0.2s;
}

.navSvgBtn:hover {
    filter: var(--svgh);
}

.navSvgBtn:active {
    filter: var(--svgn);
}

.spanButton {
    color: var(--fgv);
    transition: all 0.1s;
    cursor: pointer;

    user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    box-sizing: border-box;
}

.spanButton:hover {
    color: var(--fg);
    text-shadow: 0px 0px 5px var(--fg);
}

.spanButton:active, .navSvgBtn:active {
    transform: scale(0.9);
}
h1,
h4 {
    font-weight: bold;
    text-align: center;

    user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

h1 {
    position: fixed;
    z-index: 500;
    margin: auto;
    margin-top: 0;
    padding-top: 0.5em;
    width: 30vw;
    margin-left: 35vw;
    top: 0;
    left: 0;
    text-align: center;
}

.margintop {
    margin-top: 2em;
    height: 2em;
}


h4 {
    margin-top: 0;
    margin-bottom: 5px;
}

h6 {
    margin-top: 10px;
    margin-bottom: 2px;
    font-weight: bold;
    text-align: center;
}

h1 {
    text-shadow: 0px 0px 5px var(--fg);
}

main {
    width: 100%;
    height: 100%;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

section {
    box-sizing: border-box;
    width: 100%;
    height: 80vh;
}

#footerLinkContainer {
    width: 75%;

    margin: auto;
    margin-bottom: 8px;
    margin-top: 8px;
    text-align: center;
}

.bottomLink {
    font-size: x-small;
    color: var(--fgv);
    /* width: 75vw; */
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
    box-sizing: border-box;
}

#privacyLink, #privacyLinkHolder {
    width: 100%;
    font-size:medium;
    color: var(--fgv);
    /* width: 75vw; */
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
    box-sizing: border-box;
}

.bottomLink:visited, #privacyLink:visited {
    color: var(--fgv);
}

.bottomLink:hover, #privacyLink:hover {
    color: var(--fg);
    text-decoration: underline;
}

.bottomLink:active, #privacyLink:active {
    color: var(--fgv);
    text-decoration: underline;
}

#infoTempPopUp {
    top: 25vh;
    left: 25vw;
    width: 50vw;
    height: 50vh;
    position: fixed;
    z-index: 1000;
    background-color: var(--bgv);
    border: solid 2px var(--fgv);
    color: var(--fg);
    box-shadow: 0px 0px 7px var(--fgv);
    border-radius: 8px;
    padding: 5px;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

#infoTempPopUp h2, #infoTempPopUp p {
    text-align: center;
}

#infoTempPopUp:hover {
    background-color: var(--bg);
}

.termsButton {
    font-size: small;
    margin: auto;
    margin-top: 1em;
    margin-bottom: 1em;
    width: 100%;
    text-align: center;
    text-decoration: underline;
    color: var(--fgv);
}

.termsButton:hover {
    color: var(--fg);
    text-shadow: 0 0 5px var(--fgv);
}

.termsButton:active {
    transform: scale(0.9);
    color: var(--fgv);
    text-shadow: 0 0 3px var(--fgv);
}

.terms {
    box-sizing: border-box;
    min-height: 30vh;
    max-height: 50vh;
    width: 80vw;
    margin: auto;
    overflow-y: auto;
    background-color: var(--bgv);
    color: var(--fg);
    border: solid 1px var(--m);
    box-shadow: 0px 0px 5px inset var(--m), 0px 0px 20px var(--m);
    transition: all 0.2s;
    border-radius: 10px;
    padding: 10px;
    text-align: justify;

    font-size: 0.6em;
}

.terms h5 {
    margin-top: 1em;
    margin-bottom: 0.5em;
    font-size: 1em;
}

.terms:hover {
    background-color: var(--bg);
}

#byClickText {
    padding-left: 15px;
    padding-right: 15px;
    font-size: small;
    color: var(--fgv);
    text-align: center;
}

.licenseLink, .licenseLink:visited {
    color: var(--fg);
}

.aboutArticle {
    max-height: 40vh;
}

/* Get the extension! */
#getTheExtension {
    position: fixed;
    bottom: 30px;
    left: 30px;
}

#getBExt {
    font-size: small;
}

#availableOn {
    display: flex;
    flex-direction: row;
}

#availableOn img {
    height: 40px;
    transition: all 0.2s;
}

#availableOn img:hover {
    filter: brightness(0.9);
}

#availableOn img:active {
    filter: brightness(1.5);
    transform: scale(0.9);
}

.availChrome {
    width: calc(4/6*172px);
}

.availFox {
    width: calc(40/58*206);
}

/* Disable on small screens and mobiles */
@media (pointer:none), (pointer:coarse), screen and (max-width: 450px), (hover: none) {
    #getTheExtension {
        display: none;
    }
}

/* ----------- SCROLLBAR ----------- */

::-webkit-scrollbar {
    width: 8px;
    background: #00000000;
}

::-webkit-scrollbar:hover {
    background: #00000000;
}

::-webkit-scrollbar-track {
    border-radius: 8px;
    background-color: #00000000;
    border: none;
}

::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 1px solid transparent;
    background-clip: content-box;
    background-color: var(--fgv);
    transition: all 0.2s;
}

::-webkit-scrollbar-thumb:hover {
    border-radius: 4px;
    background-color: var(--fg);
}

::-webkit-scrollbar-thumb:active {
    background-color: var(--fgv);
}

::selection{
  background: var(--md);
}

::-moz-selection{
  background: var(--md);
}