@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro:500,900&subset=latin-ext');
@import url('https://fonts.googleapis.com/css?family=Cormorant:700|EB+Garamond:500');
@font-face {
    font-family: 'pixel';
    src: url('fonts/PxPlus_VGA_SquarePx.ttf'), url('fonts/PxPlus_VGA_SquarePx.woff');
}

* {
    box-sizing: border-box;
}

html {
    font-size: 100%;
    scrollbar-color: #0f0 #00f;
}

body {
    padding: 0;
    margin: 0;
    font-family: 'pixel', monospace;
    background-color: blue;
    /* width: 300%; */
    /* background-color: #000; */
}

pre{
    font-family: 'courier', monospace;
    font-size: 0.85rem;
    /* word-break: break-all;
    hyphens: auto; */
    white-space: pre-wrap;
    word-wrap: break-word;
}

.column p, .column tr, .column li {
    /* font-family: 'Times New Roman', Times, serif; */
    font-family: 'EB Garamond', serif;
    /* font-family: 'Cormorant', serif; */
}

h1, h2, h3 {
    letter-spacing: 2px;
    line-height: 1em;
    color: #fff;
    text-shadow: 4px 4px 3px #0f0;
}

.container {
    /* background-color: #000; */
    /* width: 300%; */
    height: 100vh;
    position: fixed;
    left: 0px;
    /* left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0); */
}

.reveal {
    color: #00f;
    text-decoration: underline;
}

.reveal:hover {
    font-style: italic;
}

.video-container {
    width: 75%;
    display: block;
    margin: auto;
}

.video-container video {
    width: 100%;
}

.citation {
    font-size: 2rem;
    line-height: 1.2em;
    text-align: center;
    /* background-color: #f00; */
    /* font-weight: bolder; */
    color: #fff;
    text-decoration: underline #0f0;
    text-shadow: 2px 2px #f00;
    text-transform: uppercase;
}

div.citation a {
    color: #00f;
    text-shadow: 2px 2px #0f0;
    /* text-decoration: underline #f00; */
}

.column {
    font-size: 1.5rem;
    padding: 5px;
    /* word-wrap: break-word; */
    position: relative;
    /* border: 2px solid #00f; */
    width: 100px;
    height: 100vh;
    /* line-height: 0.8em; */
    float: left;
    /* background-color: #fff; */
    /* overflow-y: scroll; */
    -webkit-transition: width 2s, -webkit-transform 2s;
    /* Safari */
    -ms-transition: width 2s, -ms-transform 2s;
    /* mozilla */
    transition: width 2s, transform 2s;
}

 .column:hover {
    background-color: #00f;
    color: #fff;
    /* width: 40vw; */
    /* line-height: 1.5em; */
    /* transform: rotate3d(1, 2.0, 3.0, 10deg); */
}

.column a {
    /* background: #fff; */
    /* font-size: 2rem; */
    color: #3f3;
    /* text-decoration: none; */
    /* font-weight: bolder; */
    /* text-shadow: -1px -1px #0f0; */
    /* font-family: 'Cormorant', serif;  */
    /* font-family: 'pixel', monospace; */
}

.column a:hover {
    /* font-weight: bolder; */
    /* background: #fff; */
    font-style: italic;
    /* text-transform: uppercase; */
    text-decoration: underline #f00;
}

.column b {
    background: #00f;
}

.column u {
    /* font-style: italic; */
    font-family: 'pixel', monospace;
    font-size: 2rem;
    color: #f00;
    text-shadow: 1px 1px #fff;
    /* letter-spacing: 2px; */
}

.column u:hover {
    color: #000;
}

.column q {
    font-size: 2rem;
    line-height: 1.3em;
}

.column q:hover {
    color: #f00;
}

.column:hover h1 {
    color: #0f0;
    text-shadow: none;
}

.column button {
    /* background: none; */
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
    border-radius: 25px;
    /* text-decoration: none; */
    /* border: none; */
    /* text-align: left; */
}

.column img {
    width: 100%;
    /* max-width: 500px; */
    height: auto;
    border-radius: 2%;
}

.column iframe {
    width: 100%;
    height: auto;
}

#selected-text {
    /* z-index: 9999999; */
    color: #00f;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100vw;
    height: 100vh;
    font-size: 9rem;
    line-height: 0.7em;
    font-weight: bolder;
    word-wrap: break-word;
    hyphens: auto;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    /* align horizontal */
    align-items: center;
    /* align vertical */
    overflow-y: scroll;
}

#teaching {
    /* display: none; */
    /* width: 40vw; */
}

#games {
    /* display: none; */
    /* width: 40vw; */
}

#html-show {
    display: none;
    font-size: 0.75rem;
    position: fixed;
    right: 0px;
    top: 0px;
    width: 50%;
    height: 100vh;
    word-wrap: break-word;
    text-overflow: ellipsis;
    overflow-y: scroll;
    background-color: #0f0;
    z-index: 999;
}

#p5Sketch {
    position: fixed;
    z-index: -1;
    right: 0px;
    bottom: 0px;
    /* width: 200px;
    height: 200px; */
}

/* custom scrollbars */

::-webkit-scrollbar-track {
    /* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,1); */
    /* background-color: #fff; */
}

::-webkit-scrollbar {
    width: 5px;
    /* background-color: #fff; */
}

::-moz-scrollbar-thumb {
    background-color: #00f;
    /* border: 2px solid #555555; */
}

::-moz-scrollbar-track {
    /* -moz-box-shadow: inset 0 0 6px rgba(0,0,0,1); */
    /* background-color: #fff; */
}

::-moz-scrollbar {
    width: 5px;
    /* background-color: #fff; */
}

::-moz-scrollbar-thumb {
    background-color: #00f;
    /* border: 2px solid #555555; */
}

body {
    width: 100%;
}

.container {
    display: inline;
    position: relative;
    width: 100%;
    height: auto;
}

.column {
    width: 65%;
    margin: auto;
    height: auto;
    /* line-height: 0.8em; */
    float: none;
    /* background-color: #fff; */
    /* overflow-y: scroll; */
    -webkit-transition: none;
    /* Safari */
    -ms-transition: none;
    /* mozilla */
    transition: none;
    background-color: #00f;
    color: #fff;
    border-bottom: solid 3px red;
}

/* .column:hover {
    width: 100%;
} */
/* 
@media only screen and (max-width: 999px) {
    html {
        font-size: 75%;
    }
    body {
        width: 100%;
    }
    .container {
        display: inline;
        position: relative;
        width: 100%;
        height: auto;
    }
    .column {
        width: 100%;
        height: auto;
         line-height: 0.8em; 
        float: none;
        /* background-color: #fff; 
        /* overflow-y: scroll; 
        -webkit-transition: none;
        /* Safari 
        -ms-transition: none;
        /* mozilla 
        transition: none;
        background-color: #00f;
        color: #fff;
        border-bottom: solid 3px red;
    }
    .column:hover {
        width: 100%;
    }
} */