@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");
body {
  margin: 0;
  padding: 0;
}
#container {
  /* margin: 15px; */
  font-family: "Montserrat", cursive;
  cursor: grabbing;
  min-height: 100vh;
  min-width: 100vw;
  background: #000;
  overflow: hidden;
}
#container.active {
  cursor: pointer;
}
.mumbai {
  background-image: url('./assets/mumbai.png');
  height: 0px;
  width: 0px;
}
.texture {
  height: 0px;
  width: 0px;
  background-image: url('./assets/earth.png');
}
.menu {
  position: fixed;
  color: #fff;
  top: 40px;
  left: 40px;
  font-size: 22px;
  font-weight: 700;
  transition: all 0.5s ease-in-out;
  margin: 0;
}
/* #container.active .menu {
  color: #000;
} */
.menu span {
  cursor: pointer;
}
.menu span:hover,
.menu span.active {
  text-decoration: underline;
}
.page-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
#load-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
}
.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}
.loader {
  color: #003b6b;
  font-size: 10px;
  margin: 150px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  content: "";
  position: absolute;
  top: 0;
}
.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 3.5em;
}
@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
