* {
  box-sizing: border-box;
  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
*::-webkit-scrollbar {
  display: none;
}


body {
  display: flex;
  flex-direction: column;
  background-color: white;
  width: 100%;
  height: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  display: flex;
  position: fixed;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.section {
  display: grid;
  position: absolute;
  z-index: 1;
  width: 100%;
  min-height: 100%;
}

.hidden {
  display: none;
    pointer-events: none;
}
