@import url("./canvas.css");
@import url("./panel.css");
@import url("./cam.css");
@import url("./loader.css");
@import url("./dialog.css");
@import url("./toast.css");

* {
  box-sizing: border-box;
}

:root {
  --z-index-canvas: 1;
  --z-index-cam: 2;
  --z-index-toast: 3;
}

html,
body {
  padding: 0px;
  margin: 0px;
  height: 100vh;
  width: 100vw;
}

body {
  min-width: 1024px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  body {
    min-width: 768px;
  }
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
}
