body {
    background-color: #2e0073;
    color: #ad77fb;
    font-size: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

body.theme-light {
    background-color: #ad77fb;
    color: #2e0073;
}

#main-container {
    display: grid;
    grid-template-columns: auto 1000px auto;
    column-gap: 0px;
    padding-top: 60px;
}

#doob-container {
    text-align: right;
    font-size: 36px;
    user-select: none;
}

#menu-container {
    user-select: none;
}

.line {
    height: 3px;
    width: 100%;
    background: #ad77fb;
}

body.theme-light .line {
    background: #2e0073;
}

.open-page-item {
    cursor: pointer;
}

.menu-item {
    display: inline-block;
    margin-right: 50px;
    user-select: none;
}

.menu-item-highlighted {
    color: #d2b3ff;
}

#change-theme-container {
    margin-top: 485px;
    font-size: 0.7em;
}

body.theme-light .menu-item-highlighted {
    color: #6520cc;
}

.page {
    position: absolute;
    width: 1000px;
    border-top:3px solid #ad77fb;
    height: 480px;
    border-bottom:1px solid #ad77fb;
    background: #2e0073;
    box-sizing: border-box;
    display: none;
    padding-top: 30px;
}

body.theme-light .page {
    border-color: #2e0073;
    background: #ad77fb;
}

#pages-container {
    position: relative;
}

#page-about, 
#page-home, 
#page-message-sent,
#page-message-spinner,
#page-maybe {
    padding-top: 125px;
    text-align: center;
}

#page-message {
    padding-left: 70px;
    padding-right: 70px;
    font-size: 0.8em;
}

#page-fellas {
    padding-left: 70px;
    padding-right: 70px;
    font-size: 0.8em;
}

#page-history,
#page-the-end {
    padding: 70px;
    font-size: 0.8em;
}

#page-the-end {
    text-align: center;
}

#page-fellas ul li ul {
    list-style: none;
    margin-bottom: 20px;
}

#page-maze-img-container {
    text-align: center;
}

#page-vr,
#page-how,
#page-losing-weight,
#page-underwater {
    padding: 70px;
    padding-top: 35px;
    font-size: 0.8em;
    overflow-y: auto;
}

#page-losing-weight ul li ul {
    margin-top: 10px;
    margin-bottom: 20px;
}
#page-losing-weight ul li ul li {
    margin-bottom: 10px;
}


#page-vr-vtol-img {
    position: absolute;
    top: 35px;    
    left: 545px;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #ad77fb #2e0073;
}

*::-webkit-scrollbar {
    width: 8px;
}
  
*::-webkit-scrollbar-track {
    background: #2e0073;
}
  
*::-webkit-scrollbar-thumb {
    background-color: #ad77fb;
    border-radius: 0px;
    border: 0px solid #2e0073;
}

body.theme-light * {
    scrollbar-color: #2e0073 #ad77fb;
}

body.theme-light *::-webkit-scrollbar-track {
    background: #ad77fb;
}

body.theme-light *::-webkit-scrollbar-thumb {
    background: #2e0073;
}

#message-button-container {
    text-align: right;
    position: relative;
    top: -42px;
}

.message-error {
    color: red;
}

body.theme-light .message-error {
    color: rgb(161, 4, 4);
}

#mobile-doob {
    margin-top: 20px;
    text-align: right;
    font-size: 36px;
}

#mobile-notice {
    margin: 40px;
    font-size: 28px;

}

@media only screen and (max-device-width: 999px) {
    #main-container {
        display: none;
    }
    #mobile-container {
        display: grid !important;
        grid-template-columns: auto 90vw auto;
    }
}

a {
    color: #ad77fb;
    text-decoration: underline;
}
a:hover {
    color: #d2b3ff;
    text-decoration: underline;
}

body.theme-light a {
    color: #2e0073;
}

body.theme-light a:hover {
    color: #6520cc;
}

a.external-link {
    color: #ad77fb;
    text-decoration: none;
}
a.external-link:hover {
    color: #d2b3ff;
    text-decoration: underline;
}
a.external-link {
    font-size: 0.9em;
}
a.external-link::after {
    font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f35d";
    font-style: normal;
    margin-left: 5px;
}

#page-vr a {
    margin-left: 20px;
}

#page-underwater {
    padding-right: 40px;
}

#page-underwater-images img {
    width: 400px;
    margin: 15px;
    cursor: pointer;
}

#page-underwater-image-open img {
    width: 600px;
    margin-left: 200px;
    position: relative;
    top: -15px;
    cursor: pointer;
}