body {
  width: 100%;
  height: 500vh;
  font-family: "Akkurat Mono", sans-serif;
  background-color: var(--bg);
}

.app {
  position: relative;
  width: 100%;
  height: 100%;
}

.back-btn {
  position: fixed;
  top: 2em;
  left: 2em;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  background-color: var(--accent);
  border-radius: 0.25rem;
  z-index: 100;
}

.back-btn a {
  position: relative;
  display: block;
  top: 1.5px;
}

.project-hero {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.project-images {
  position: sticky;
  top: 0;
  padding: 0.5rem;
  width: 100%;
  height: 100vh;
  background-color: var(--bg);
}

.project-images-inner {
  border-radius: 0.5rem;
  flex-flow: column;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: clip;
}

.images {
  flex-flow: column;
  display: flex;
  gap: 0.5rem;
}

.project-img {
  width: 100%;
  height: calc(100vh);
  border-radius: 0.5rem;
  overflow: hidden;
}

.outro-copy {
  position: absolute;
  bottom: 2em;
  left: 2em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  z-index: 2;
}

.outro-copy p,
.outro-copy h2,
.outro-copy a {
  color: var(--bg);
}

.outro-copy h2 {
  position: relative;
  left: -0.05em;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: calc(400px + 50px);
  transform: translateX(415px);
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 100;
  will-change: transform;
}

.drawer-toggler {
  width: 40px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background-color: var(--bg);
  border-radius: 0.5rem 0 0 0.5rem;
  cursor: pointer;
}

.drawer-toggler .bar {
  width: 1.5px;
  height: 30px;
  background-color: var(--text);
}

.drawer-wrapper {
  width: 100%;
  height: 100%;
  padding: 4rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--bg);
  border-radius: 0.5rem 0 0 0.5rem;
}

.project-description h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.project-description p {
  font-size: 0.7rem;
}

.project-description p.desc,
.project-description p.desc {
  text-transform: none;
  font-family: "PP Editorial New";
  font-size: 1rem;
  margin-bottom: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.project-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

@media (max-width: 900px) {
  .drawer {
    width: calc(300px + 50px);
    transform: translateX(315px);
  }
}
