html, body {
    /* for testing scrollbar TODO: remove*/
    height: 500vh;
    /*hides scrollbar for firefox*/
    scrollbar-width: none;
    /*hides scrollbar for IE*/
    -ms-overflow-style: none;
}

/*hides scrollbar for chromium browsers*/
html::-webkit-scrollbar{
    display: none;
}

body {
    background-color: #23c17c;
    color: #EEEEEE;
}

.lightMode {
    background-color: #F8F0E3;
    color: #23c17c;
}

/*custom scrollbar*/
#scrollbarDiv {
    /*background-color: #36696B;*/
    height: 100vh;
    /*positioning*/
    position: fixed;
    right: 0;
    top: 0;
}

/* positioning for div*/
main {
    /*positioning*/
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*text positioning*/
    text-align: center;
}

/* toggle dark mode button */
#dark-mode-button {
    /* button styles */
    border: none;
    /* position */
    position: fixed;
    top: 1vh;
    left: 1vh;
    /* properties */
    height: 2rem;
    width: auto;
}

/*text*/
main h1,h2 {
    font-family: Verdana, serif;
    font-weight: normal;
}
main h1 {
    font-size: 5em;
    margin: 0.2em;
}

main h2 {
    font-size: 1em;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: auto;
}
