main {
  display: block;
}

body {
  margin: 0;
}

:root {
  font-size: 16px;
}

html {
  background: #0a0a0a;
}

body {
  --color-text: #fff;
  --color-bg: #0a0a0a;
  --color-link: #826437;
  --color-link-hover: #fff;

  color: var(--color-text);
  background-color: var(--color-bg);
  font-family:
    moderno-fb, "Big Caslon", "Book Antiqua", "Palatino Linotype", Georgia,
    serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior: none;
}

#gl {
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  position: fixed;
  z-index: 0;
}


.frame {
  padding: 3rem 5vw;
  text-align: center;
  position: relative;
  z-index: 1000;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.frame > * {
  position: relative;
}

@media screen and (min-width: 53em) {
  .frame {
    position: fixed;
    text-align: left;
    z-index: 10000;
    top: 0;
    left: 0;
    display: grid;
    align-content: space-between;
    width: 100%;
    max-width: none;
    height: 100vh;
    padding: 2rem 3rem;
    pointer-events: none;
    grid-template-columns: 75% 25%;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "title links"
      "content content"
      "github demos";
  }
}
