*, :after, :before {
  box-sizing: border-box;
}

:root {
  font-size: 15px;
}

body {
  --color-text: #fff;
  --color-bg: #000;
  --color-link: #aaa;
  --color-link-hover: #333;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
}

a {
  color: var(--color-link);
  outline: none;
  text-decoration: none;
}

a:hover, a:focus {
  color: var(--color-link-hover);
  outline: none;
}

body .dg.ac {
  z-index: 10000;
}

.dg.main > ul {
  border: 0;
  border-left: 1px solid #333;
  border-right: 1px solid #333;
}

body .dg.main .close-button, body .dg.main .close-button:hover {
  background: #333;
}

.frame {
  text-align: center;
  z-index: 1000;
  padding: 3rem 5vw;
  position: relative;
}

.frame__title {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.frame__links {
  display: inline;
}

.frame__links a:not(:last-child) {
  margin-right: 1rem;
}

.content {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100vw;
  height: calc(100vh - 13rem);
  display: flex;
  position: relative;
}

@media screen and (width >= 53em) {
  .frame {
    text-align: left;
    z-index: 100;
    z-index: 1000;
    pointer-events: none;
    grid-template: "title ."
                   ". ."
                   ". links"
                   / 75% 25%;
    align-content: space-between;
    width: 100%;
    max-width: none;
    height: 100vh;
    padding: 3rem;
    display: grid;
    position: fixed;
    top: 0;
    left: 0;
  }

  .frame__title {
    grid-area: title;
    margin: 0;
  }

  .frame__links {
    grid-area: links;
    justify-self: end;
    padding: 0;
  }

  .frame a {
    pointer-events: auto;
  }

  .content {
    justify-content: center;
    height: 100vh;
  }
}
/*# sourceMappingURL=index.e04445fa.css.map */
