@import url("./fonts.css");
@import url("./menuHomeApp.css");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  direction: rtl;
}

html {
  width: 100vw;
  height: 100dvh;
  min-height: 100dvh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

html::-webkit-scrollbar {
  display: none;
  scrollbar-width: none;
}

body {
  width: 100vw;
  height: 100dvh;
  min-height: 100dvh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: #fafafc;
  overflow: hidden;
}

#app {
  width: 100vw;
  height: 100dvh;
  min-height: 100dvh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}
