@import url("https://fonts.googleapis.com/css2?family=Jost:wght@700;800&display=swap");

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  height: 100%;
  overflow: hidden; /* ✅ sprečava neželjeni scroll i zoom */
}

html {
  height: 100%;
}

#root {
  height: 100dvh; /* ✅ koristi cijelu vidljivu visinu (iOS friendly) */
  min-height: -webkit-fill-available; /* ✅ fallback za starije Safari verzije */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
