#Loading {
  position: fixed;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  background-color: #6F1517;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow: hidden;
}
#Loading svg {
  width: 100%;
}
#Loading svg#deer {
  transform: scale(0);
  animation: Scale 1s forwards cubic-bezier(1, 0.13, 0.65, 1.37);
}
/*#Loading img#text,*/
/*#Loading svg#text {*/
/*  transform: translateY(100rem);*/
  /*animation: Bottom 1.2s 0.8s forwards;*/
/*}*/
@keyframes Scale {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@keyframes Bottom {
  from {
    transform: translateY(100rem);
  }
  to {
    transform: translateY(0);
  }
}

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