/**{
    margin: 0;
    padding: 0;
    border: 0;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
body
{
}
canvas
{
    width:100%;
}
#interactive-area
{

}*/

.floating {
  position: absolute;

  animation-name: floating;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes floating {
  from {
    transform: translate(0, 0px);
  }

  65% {
    transform: translate(0, 15px);
  }

  to {
    transform: translate(0, -0px);
  }
}

#webGLCanvasTest {
  width: 1px;
  height: 1px;
  position: fixed;
  top: -1px;
  left: -1px;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  /* background-color: #EF168E; */
  background-color: #000000;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

canvas {
  background-color: #000000;
  /* position: relative; */
}

#interactive-area {
  background-image: none;
  background-repeat: no-repeat;
  background-position: center;
  margin: auto;
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#rotate_device_graphics {
  display: none;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
  width: auto;
  padding: 0;
  background-color: #ef168e;
  background-image: url("../img/rotate_device.png");
  background-size: auto;
  background-position: center center;
  background-repeat: no-repeat;
}

div.spacer {
  height: 1px;
}
