/************** GENERAL ****************/


* {
  margin:              0;
  padding:             0;
  box-sizing: border-box;
}

html, body {
  width:  100%;
  height: 100%;
  margin: 0px;
  overflow: hidden;
}

body {
  font-family: 'Helvetica';
}

a {
  text-decoration: none;
  color: black;
}

a:hover, a:active {
  color: red;
}

/**** POP UP *****/
.popup {
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 20px;
  display: none;
  opacity: 0;
  position: absolute;
  z-index: 9999999;
}

.popup ul {
  list-style: none;
}

.popup li {
  margin-bottom: 2%;
}

.popup:target {
  display: block;
  opacity: 1;
}

.popup .close {
  position: absolute;
  top: 6px;
  right: 20px;
  font-size: 30px;
}

.popup .description {
  position: absolute;
  bottom: 20px;
  left: 30px;
  color: grey;
}

.window {
  width: 100%;
  margin: 0%;
  height: 100%;
  border-radius: 5px;
  border: 1px solid #c1c1c1;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  box-shadow: 5px 5px 30px #666666;
  font-family: 'Helvetica Neue';
  z-index: 99999;
  overflow: hidden;
}

.window h2 {
  text-align: center;
  font-weight: 400;
  letter-spacing: .3px;
  text-transform: uppercase;
  font-weight: bold;
}

.window-banner {

  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#e6e4e6+0,e1dfe1+30,dcdadc+58,d3d1d3+100 */
  background: #e6e4e6; /* Old browsers */
  background: -moz-linear-gradient(top, #ffffff 0%, #e1dfe1 30%, #dcdadc 58%, #d3d1d3 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%,#e1dfe1 30%,#dcdadc 58%,#d3d1d3 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%,#e1dfe1 30%,#dcdadc 58%,#d3d1d3 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6e4e6', endColorstr='#d3d1d3',GradientType=0 );
  /* IE6-9 */
  padding: 2%;
  border-bottom: 1px solid #acabac;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;

}

.window-content {
  background-color: #ECECEC;
  background-color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
  color: #555555;
  padding: 15%;
  padding-top: 5%;
  padding-bottom: 13%;
  height: 100%;
  overflow: scroll;
}

/********** NAVIGATON *************/

.banner {
  border: 1px solid red;
  padding: 5%;
}

.footer {
  width: 90%;
  position: absolute;
  bottom: 1%;
  margin: 1%;
  font-size: 8px;
  text-align: right;
  left: 49%;
  transform: translate(-50%, 0);
}

.footer p {
  float: right;
  display: inline;
}

.footer p:first-of-type {
  float: left;
  display: inline;
}



img {
  width: 60%;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, 0);
}

nav {
  position: fixed;
  position: absolute;
  width: 60%;
  bottom: 8%;
  left: 50%;
  transform: translate(-50%, 0);
  font-weight: bold;
  z-index: 9999;
}

nav ul {
  width: auto;
}

nav li {
  position: relative;
  list-style: none;
  margin: 0 auto;
  margin-bottom: 5%;
  text-transform: uppercase;
  text-align: center;
}

.content {
}

#canvas {
  width: 100%;
  height: 100%;
  margin: 0%;
  overflow: hidden;
  position: relative;
}

#progress img {
  width: 10%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#canvas {
  background: #11e8bb; /* Old browsers */
  background: -moz-linear-gradient(top,  #11e8bb 0%, #8200c9 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  #11e8bb 0%,#8200c9 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  #ffffff 0%,#eeeeee 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#11e8bb', endColorstr='#8200c9',GradientType=0 ); /* IE6-9 */
}
}

.center-vertical {
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translate(-50%, 0);
}


.center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 80%;
}

