
html {
    -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape while allowing user zoom */
}

body {
	max-width: 700px;
	text-align:center;
	margin-left:auto;
    margin-right:auto;
	font-size: 12px;
	/*background-color: #F5F5F5;*/
	background-color: white;
    font-family: monospace;
}

h1 {
	font-size: 5em;
	color: green;
	margin-top: 0px;
	margin-bottom: 0px;
}

h2 {
	font-size: 16.5px;
	color: black;
	margin-top: 10px;
	margin-bottom: 3px;
}

a:link {
    color: green;
	text-decoration: none;
}

/* visited link */
a:visited {
    color: green;
}

/* mouse over link */
a:hover {
    color: hotpink;
}

/* selected link */
a:active {
    color: blue;
}

.outerDiv {
	display: block;
}

.container {
	max-width: 96%;
	margin-left:auto;
    margin-right:auto;
	padding-top: 10px;
	padding-bottom: 10px;
}

.innerDiv {
    width: 20%;
    padding-bottom: 20%;
    background-color: red;
    box-shadow: 0px 0px 2px 2px white;
    float: left;
}

.colorCanvas {
	margin: 10px auto 10px auto;
	width: 10%;
	padding-top: 10%;
	box-sizing: border-box;
}

.randomCanvas {
	margin: 10px auto 10px auto;
	height: 100px;
	width: 100px;
	font-size: 20px;
	padding: 40px 0 0 0;
	box-sizing: border-box;
}

#randomCanvas {
	background-color: black;
	display: none;
}

#overlayCanvas {
	background-color: black;
	width: 100%;
    height: 100%;
	z-index: 1000;
    top: 0;
    left: 0;
    position: fixed;
	display: none;
}

.text {
	font-size: 1em;
	color: black;
}

.button {
    padding: 12px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 17px;
    margin: 0px 0px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
    color: green;
    border: 1px solid lightgray;
	font-weight: bold;
	width: 100%;
	margin-top: 12px;
    box-shadow: 0px 0px 2px 2px white;
    background-color:white;
}

.button:hover {
    background-color: #555555;
    color: white;
}

/* webkit requires explicit width, height = 100% of sceeen */
/* webkit also takes margin into account in full screen also - so margin should be removed (otherwise black areas will be seen) */
.colorCanvas:-webkit-full-screen {
	width: 100%;
	height: 100%;
	margin: 0;
}

.colorCanvas:-moz-full-screen {
	width: 100%;
	height: 100%;
	margin: 0;
}

.colorCanvas:-ms-fullscreen {	
	width: 100%;
	height: 100%;
	margin: 0;
}

/* W3C proposal that will eventually come in all browsers */
.colorCanvas:fullscreen { 
	width: 100%;
	height: 100%;
	margin: 0;
}

.header1 {
	text-align: center;
	font-size: 16.5px;
	font-weight: bold;
}

hr {
	border: 0;
	height: 1px;
	background: #333;
	background-image: -webkit-linear-gradient(left, #ccc, #333, #ccc);
	background-image: -moz-linear-gradient(left, #ccc, #333, #ccc);
	background-image: -ms-linear-gradient(left, #ccc, #333, #ccc);
	background-image: -o-linear-gradient(left, #ccc, #333, #ccc);
}

.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

blockquote{
    font-size: 1.1em;
    width:75%;
    margin:15px auto;
    font-style:italic;
    color: #555555;
    padding:1.2em 10px 1.2em 75px;
    border-left:8px solid #78C0A8 ;
    line-height:1.6;
    position: relative;
    background:#EDEDED;
    text-align: left;
  }
  
  blockquote::before{
    content: "\201C";
    color:#78C0A8;
    font-size:4em;
    position: absolute;
    left: 10px;
    top:-10px;
  }
  
  blockquote::after{
    content: '';
  }
  
  blockquote span{
    display:block;
    color:#333333;
    font-style: normal;
    font-weight: bold;
    margin-top:1em;
  }

  img {
    max-width: 98%;
  }