body {
  background-color: #000;
  color: #fff;
  font-family: "Neuton", serif;
  text-align: left;
  margin: auto;
  /* padding: 0 80px 0 80px; */
  padding: calc(8px + 1.5625vw);
  /* 0 14px 0 14px; */
  max-width: 80em;
}

nav a {
  text-decoration: none;
  color: #000;
}

h1 {
  color: #808080;
  font-size: 78px;
  font-weight: 700;
  line-height: 99px;
  letter-spacing: -0.075em;
  text-align: left;
  margin: 0;
  padding-bottom: 0;
}

h2 {
  font-size: 150px;
  font-weight: 700;
  letter-spacing: -0.05em;
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 0.1em;
  font-stretch: 210%;
}

p {
  margin-top: 0;
}

header {
  margin-top: 2em;
  position: relative;
  /* background-color: #f00; */
}

.light {
  color: #bfbfbf;
}

.brace {
  font-size: 75px;
  font-weight: 700;
}

.main {
  padding: 0 5em;
}

.content {
  padding: 0 1.2em;
  font-size: 36px;
  /* font-size: max(34px, 34px); */
  font-weight: 400;
  line-height: 1.3em;
  letter-spacing: 0.04em;
  margin-bottom: -63px;
}

.subSection {
  font-size: 50px;
  font-weight: 700;
  line-height: 69px;
  letter-spacing: -0.01em;
  margin-left: 0.1em;
  padding-top: 0.5em;
}

/* hamburger menu */
.hamburger-menu__wrapper {
  min-height: 40em;
  height: fit-content;
  position: relative;
}

.hamburger-menu {
  height: 100%;
  width: 25em;
  position: absolute;
  top: 0;
  right: 0;
}

.hamburger-menu__button {
  width: 3.5em;
  position: absolute;
  right: 1em;
  top: 1em;
  z-index: 3;
  transition: all 0.3s;
}

.hamburger-menu__button > img {
  filter: invert(100%);
  transition: all 0.3s;
}

.hamburger-menu__wrapper {
  position: relative;
  height: 100%;
  overflow: hidden;
  right: 0;
}

.hamburger-menu__wrapper input[type=checkbox] {
  width: 5.5em;
  height: 5.5em;
  padding: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  right: 1em;
  top: 1em;
  z-index: 4;
  cursor: pointer;
}

.hamburger-menu__wrapper input:checked ~ .hamburger-menu__button > img {
  filter: invert(0%);
  transition: all 0.3s;
}

.hamburger-menu__wrapper input:checked ~ .hamburger-menu__button {
  transform: rotate(-90deg);
  transition: transform 0.3s;
  color: #0F0;
}

.hamburger-menu__wrapper input:checked ~ .hamburger-menu__slider {
  transform: none;
  overflow: visible;
}

.hamburger-menu__slider {
  position: absolute;
  width: 100%;
  height: 100%;
  color: #000;
  background-color: #FFF;
  z-index: 2;
  transform: translateX(25em);
  transition: transform 0.3s;
  text-align: left;
  border-radius: 1em 0 1em 1em;
}

.hamburger-menu__slider li {
  font-size: 38px;
  line-height: 60px;
  list-style-type: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.hamburger-menu__slider li li {
  font-weight: 300;
}