/****************************************
  ==== RESETS
****************************************/

html,
body,
div,
canvas {
  margin: 0;
  padding: 0;
}
::-moz-selection {
  color: #333;
  text-shadow: none;
}
::selection {
  color: #333;
  text-shadow: none;
}
.clear:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.clear {
  display: inline-table;
  clear: both;
}
/* Hides from IE-mac \*/
* html .clear {
  height: 1%;
}
.clear {
  display: block;
} /* End hide from IE-mac */

/****************************************
  ==== LAYOUT
****************************************/

html,
body {
  width: 100%;
  height: 100%;
  font-family: Helvetica, Verdana, Arial, sans-serif;
}
.template-wrap {
  position: relative;
  height: 100vh;
}
.template-wrap:hover .fullscreen {
  opacity: 1;
}
.template-wrap canvas {
  position: relative;
  z-index: 9;
}
.fullscreen {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  cursor: pointer;
  opacity: 0;
  transition: opacity 150ms ease-in-out;
}
#canvas {
  width: 100%;
  height: 100%;
}
