html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  background-color: #111;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

p {
  color: aliceblue;
}

.no-scroll-content {
  overflow: hidden;
}

.no-scroll-lightbox {
  overflow: hidden;
}

.nav-open {
  overscroll-behavior: none;
}

html.nav-open {
  overflow-y: scroll;
}

html.nav-open.nav-hide-scroll {
  overflow: hidden;
}

body.nav-open {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: var(--scroll-lock-top, 0px);
}

@media (min-width: 601px) {
  .nav-scroll-override.nav-open {
    overflow: hidden;
  }
}

#orb-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

@keyframes aboutFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  body, html {
    padding: 0;
    margin: 0;
  }
}
