* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-width: 100vw;
  min-height: 100vh;
}

#app {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-width: 100vw;
}

.loading {
  background-image: url("./loading.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 150px;
  width: 150px;
  height: 150px;
}
