@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.abs {
  position: absolute;
}

a {
  color: white;
  text-decoration: none;
}
a:hover {
  color: lightblue;
}

body {
    font-family: "Titillium Web", sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: #ffffff;
}

.container {
    display: flex;
    justify-content: center;
    height: 100%;
}

.input_video {
  height: 100%;
  object-fit: fill;
  object-position: center;
  &.selfie {
    transform: scale(-1, 1);
  }
}

.input_video.selfie {
  transform: scale(-1, 1);
}

.main_menu {
  position: absolute;
  left: 50%;
  top: 50%;
}

.ingame_menu {
  position: absolute;
  left: 50%;
  top: 10px;
}

.control-panel{
  display: none;
}

canvas {
  position:fixed;
  height: 100%;
}

.control-panel {
  position: absolute;
  left: 10px;
  bottom: 10px;
}

.video-container{
  position: fixed;
  height: 100%;
}

.loading {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  align-items: center;
  backface-visibility: hidden;
  justify-content: center;
  opacity: 1;
  transition: opacity 1s;
}
.loading .message {
  font-size: x-large;
}
.loading .spinner {
  position: absolute;
  width: 120px;
  height: 120px;
  animation: spin 1s linear infinite;
  border: 32px solid #bebebe;
  border-top: 32px solid #3498db;
  border-radius: 50%;
}

.loaded .loading {
  opacity: 0;
}

.button {
  display: inline-block;
  padding: 5px 10px;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  vertical-align: middle;
  font-family: "Rubik One", sans-serif;
  text-decoration: none;
  font-size: 1vw;
  transition: all 0.5s;
  background-color: #3498db;
}

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