* {
	box-sizing: border-box;
}
*:focus {
	outline: 0;
  outline: none;;
}

@font-face {
    font-family: 'futuramedium';
    src: url('../assets/fonts/futura_md-webfont.woff2') format('woff2'),
         url('../assets/fonts/futura_md-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body {
	/*overflow: hidden;*/
	background-color: #fff;
	color: #000;
	margin: 0px;
	font-family: 'futuramedium', Monospace;
	font-size: 13px;
}

#info {
	position: absolute;
	top: 0px; width: 100%;
	padding: 5px;
	text-align: center;
}

a {
	color: #0080ff;
	text-decoration: none;
}

a:hover {
	color: #f00;
}

div#container, canvas {
	touch-action: none;
}
div#canvas-content #btn-close {
	box-sizing:border-box;
	margin:5em auto 0 auto;
	max-width: 600px;
	padding: 0 2em 0 2em;
	text-align: right;
	-webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

div#canvas-content #btn-close svg {
	position:relative;
	transform:scale(2.0);
	-webkit-transform:scale(2.0);
	cursor: pointer;
	right:0;
	top:0;
}
div#canvas-content {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    background:rgba(255,255,255,1.0);
		display: none;
}
div#canvas-content article {
		display: none;
		box-sizing:border-box;
    margin:0 auto auto auto;
    max-width:600px;
		padding:2em;
}
div#canvas-content article h1 {
    text-align:left;
    font-size:4em;
		margin-top:0;
}
div#canvas-content article p {
    font-size:1.5em;
}
#footer {
	width: 100%;
	margin: 1em auto;
	position: absolute;
	bottom: 0;
	text-align: center;
}

.show {
	opacity:1!important;
	/*transition: 2s opacity;*/
}

.hide {
	opacity: 0;
	/*transition: 2s opacity;*/
}

.hidden {
	display:none!important;
}

/* .fade,
div#canvas-content {
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -ms-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
} */

.fadein {
	-webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
	 -moz-animation: fadein 2s; /* Firefox < 16 */
		-ms-animation: fadein 2s; /* Internet Explorer */
		 -o-animation: fadein 2s; /* Opera < 12.1 */
				animation: fadein 2s;
}
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.fadeout {
	-webkit-animation: fadeout 2s; /* Safari, Chrome and Opera > 12.1 */
	 -moz-animation: fadeout 2s; /* Firefox < 16 */
		-ms-animation: fadeout 2s; /* Internet Explorer */
		 -o-animation: fadeout 2s; /* Opera < 12.1 */
				animation: fadeout 2s;
}
@keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}

/* Firefox < 16 */
@-moz-keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}

/* Internet Explorer */
@-ms-keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}
