/* html, body {
    width:  100%;
    height: 100%;
    margin: 0;
  }

#c{
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
} */

body,
html {
  margin: 0;
  padding: 0;
  background: #25252B;
  height: 100%; 
  overflow: hidden
}
* {
  touch-action: manipulation;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
body {
  position: relative;
  color: white;
  letter-spacing: 2px;
  font-size: 11px;
  font-family: 'Poppins', sans-serif;
  width: 100%;
  height: 100vh;
}
.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#c {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.loading {
  position: fixed;
  z-index: 50;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  background: #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.8
}

.loader{
  -webkit-perspective: 120px;
  -moz-perspective: 120px;
  -ms-perspective: 120px;
  perspective: 120px;
  width: 100px;
  height: 100px;
}

.loader:before{
  content: "";
  position: absolute;
  left: 25px;
  top: 25px;
  width: 50px;
  height: 50px;
  background-color: #9bffaf;
  animation: flip 1s infinite;
}

@keyframes flip {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotateY(180deg);
  }

  100% {
    transform: rotateY(180deg)  rotateX(180deg);
  }
}

#name {
	position: absolute;
	top: 10px;
	width: 100%;
	text-align: center;
	z-index: 100;
	display:block;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 100; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  color: rgb(0,0,0);
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  opacity: 0.8;
  border-radius: 25px
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.logo-bar {
  /* background-color: red; */
  position: absolute;
  width: 100%;
  height: 10%;
  top: 0;
  z-index: 9999999;
  /* opacity: 0.5; */
}

@keyframes rotate {
  0%   {transform: rotate(0deg);}
  25%  {transform: rotate(-10deg);}
  50%  {transform: rotate(0deg);}
  75%  {transform: rotate(10deg);}
  100% {transform: rotate(0deg);}
}

.logo-item{
  float: right;
  height: 100%;
  width: 10vh;
  animation-name: rotate;
  animation-duration: 6s;
  animation-iteration-count: 3;
  opacity: 0.8;
}

.logo-item > img {
  position: relative;
  height: 60%;
  left: 20%;
  top: 20%;
}

#soundButton, #backButton > img {
  position: relative;
  height: 110%;
}

.logo-item:hover{
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
  transform: rotate(0deg) !important;
  opacity: 0.5
}

.logo-bar > #soundButton, #backButton {
  float:left;
  opacity: 1;
}

.logo-bar > #soundButton:hover, #backButton:hover {
  cursor: pointer;
  opacity: 0.8
}

#backButton{
  display: none
}

@keyframes visibility {
  0%   {opacity: 0;}
  25%  { opacity: 0.8;}
  50%  {opacity: 0.8;}
  75%  {opacity: 0.8;}
  100% {opacity: 0;}
}

.movement-indicator {
  display: inline-block;
  position: absolute;
  width: 20vh;
  height: 15%;
  bottom: 8%;
  left: 20% - 10vh;
  opacity: 0;
  animation-name: visibility;
  animation-duration: 6s;
  animation-iteration-count: 2;
}

.movement-indicator > img {
  position: relative;
  width: 100%
}

@keyframes slide {
  0%   {transform: translate(0px,0px);}
  25%  {transform: translate(20px,0px);}
  50%  {transform: translate(0px,0px);}
  75%  {transform: translate(-20px,0px);}
  100% {transform: translate(0px,0px);}
}

.movement-indicator > #bottomImage {
  width: 50%;
  animation-name: slide;
  animation-duration: 6s;
  animation-iteration-count: 2;
}

#metaImage{
  position: absolute;
  z-index: -999;
}