html, body {
  margin: 0;
  padding: 0;
  background: gray; }

body {
  position: relative;
  width: 1080px;
  height: 1920px;
  overflow: hidden; }

.video-container {
  position: relative;
  z-index: 1;
  width: 1080px;
  height: 1920px;
  overflow: hidden; }
  .video-container img {
    display: none; }
  .video-container video {
    z-index: -1;
    position: absolute; }
  .video-container canvas {
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 1080px; }

.slider-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin-left: auto;
  margin-right: auto;
  width: 1080px;
  z-index: 2; }
  .slider-container input {
    width: 100%; }

.hotspots {
  position: absolute;
  left: 0px;
  width: 14000px;
  top: 100px;
  height: 1820px;
  z-index: 3; }
  .hotspots .spot {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: red;
    box-shadow: 0px 0px 30px yellow;
    animation-name: example;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate; }
@keyframes example {
  0% {
    background-color: red;
    width: 100px;
    rotate: 90deg; }
  25% {
    background-color: yellow; }
  50% {
    background-color: blue;
    width: 200px;
    box-shadow: 0px 0px 100px black; }
  100% {
    background-color: green;
    rotate: 270deg; } }

/*# sourceMappingURL=style.css.map */
