* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
}

html, body {
	height: 100%;

}

body {
	width: 100%;
	height: 100%;

        font-family: 'GerstnerProgrammFSL-Regular', 'Univers55', Helvetica, Arial, sans-serif;
        font-size: 19px;
        line-height: 23px;
        letter-spacing: .5px;
        stroke-color: #FFF;
        stroke-width: 0.5px;

	/*white-space:nowrap;*/
	-webkit-font-smoothing: subpixel-antialiased;
	-webkit-text-size-adjust: 100%;

  background-color: #000;
  color: #fff;
}
body.viewing-menu {
  max-height: 100vh;
  overflow: hidden;
}
h1, h2 {
  font-size: 1em;
  font-weight: normal;
}
p {
	
}

img {
	width: 100%;
  height: auto;
}

a:link,
a:visited {
    color: #fff;
    /* border-bottom: 1.5px solid #fff; */
    text-decoration: none;
    /* display: inline-block;
    line-height: 18px; */

    background-image: linear-gradient(to right, #FFF, #FFF);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: 100% 1.75px;
}

a:hover,
a:active {
    color: #fff;
    background-image: none;

}

ul {
	list-style-type: none;
	padding-left: 1em;
	margin: 0px;
}
video {
  display: block;
  width: 100%;
}
.container {
  display: flex;
  flex-direction: row;
  margin-bottom: 300px;
}

.column {
  display: flex;
  flex-direction: column;
  width: 450px;
  min-width: 450px;
  padding: 25px;
}

.column img {
  cursor: pointer;
}
.fill {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  cursor: none;
}
.full-vw {
  width: 100vw;
  max-width: 100%;
}
.full-vh {
  height: 100vh;
}
.title {
  padding-bottom: 1em;
}

#full-size-dots {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  overflow: hidden;
}

.canvas-container canvas {
  width: 100%;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  display: block;
}

.static-image {
  visibility: hidden;
}

#arrow-container {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 2000;
}

#arrow {
  width: 50px;
  cursor: pointer;
  display: block;
  transform: rotate(90deg);
  transition: transform 0.5s;
}

.viewing-menu #arrow {
 transform: rotate(540deg);
}

#menu {
	/* padding: 25px; */
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  z-index: 1000;
  background-color: #000000;
  overflow: scroll;
}
.viewing-menu #menu {
    display: block;
}

#badge-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2000;
}

#badge {
  width: 150px;
  cursor: pointer;
  display: block;
  /* transform: rotate(90deg); */
  opacity: 1.0;
  transition: opacity 0.5s;
  animation: pulse 3s infinite;
  animation-timing-function: ease-in-out;
}

.viewing-menu #badge {
 opacity: 0.0;
}

@keyframes pulse {
  0% {
	transform: rotate(0deg);
  }
  100% {
	transform: rotate(1440deg);
  }
}

#main-header {
  padding: 25px;
  position: fixed;
  top: 0;
  left: 0;
  max-width: 450px;
  z-index: 3000;
}
main.container, 
#menu{
  padding-top: 62px;
}
.viewing-menu main.container,
.viewing-fullwindow main.container,
.viewing-screenfull main.container,
.viewing-fullwindow #main-header,
.viewing-screenfull #main-header,
.viewing-fullwindow #arrow-container,
.viewing-screenfull #arrow-container {
  opacity: 0;
  pointer-events: none;
}
#site-title br {
  display: none;
}
@media screen and (max-width: 900px) {
  #arrow-container {
    left: auto;
    right: 10px;
  }
  
}
@media screen and (max-width: 640px) {
  .column {
    width: 100%;
    min-width: 100%;
    padding: 0px;
    padding-bottom: 2em;
    padding-top: 2em;
  }

  .container {
    margin: 25px;
    flex-direction: column;
  }

  .static-image {
    display: none;
  }
  #arrow {
    /* display: none; */
    position: initial;
    top: initial;
    right: initial;

    transform: rotate(90deg);
  }
  #main-header {
    padding-right: 70px;
  }
  
}
@media screen and (max-width: 415px) {
  #site-title br {
    display: initial;
  }
}
