.site-title {

  font-weight: bold;

  margin-bottom: 0px;

  line-height: 1;

}
body {
  margin: 0;
  background: white;
  color: black;
  font-family: "Courier New", monospace;
  font-size: 11px;
  line-height: 1.5;
}

.menu {
  position: fixed;
  top: 30px;
  left: 30px;

  width: 200px;

  display: flex;
  flex-direction: column;

  gap: 2px;

  line-height: 1.1;
}

.menu a,
.menu-title {
  color: black;
  text-decoration: none;
}

.menu a:hover {
  text-decoration: none;
}

.menu a,
.menu-title {
  text-decoration: none;
  color: black;
}

.submenu {
  margin-top: 2px;
  margin-left: 10px;

  display: flex;
  flex-direction: column;

  gap: 1px;

  line-height: 1.1;
}


.content {
  margin-left: 240px;

  padding-top: 40px;
  padding-bottom: 120px;
}


.work {
  margin-bottom: 180px;
}

.image-sequence {
  display: flex;
  flex-direction: column;

  gap: 42px;

  max-width: 760px;
}

.image-sequence img {
  width: 100%;
  height: auto;

  display: block;

  pointer-events: none;
}
}

.text {
  margin-top: 40px;

  max-width: 520px;
}

.narrow {
  max-width: 420px;
}

.page-section {
  margin-bottom: 120px;
}

@media (max-width: 900px) {

  .content {
    margin-left: 40px;
    margin-right: 40px;
    padding-top: 180px;
  }

  .image-grid {
    grid-template-columns: 1fr;
  }

}