@import url("var.css");
@import url("font.css");
@import url("scroll.css");
@import url("content.css");
@import url("intro.css");
@import url("menu.css");
@import url("burger.css");
@import url("footer.css");
@import url("sections.css");
@import url("mobile.css");
@import url("qhd.css");

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

html,
body {
  height: 100vh;
  background-color: var(--white-blue);
  overflow-x: hidden;
  overflow-y: hidden;
}

.app-root {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.main-content {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.main-content::-webkit-scrollbar {
  display: none;
}

#burger-toggle {
  display: none;
}