html,
body {
  height: 100%;
  width: 100%;
}

body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  background-color: #f4f4f5;
}

#app {
  position: relative;
}

#splash {
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background-color: #f4f4f5;
  /* background-color: rgb(244, 244, 245, 0.5); */
}

#splash.is-ready {
  animation: fadeOut;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-timing-function: ease-in;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
