* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f3f3f3;
  color: rgb(64, 63, 63);
  font-family: Arial, Helvetica, sans-serif;
}

#drawCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px 48px 90px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 46px;
}

.site-title {
  color: rgb(64, 63, 63);
  text-decoration: none;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  display: inline-block;
}

nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  padding-top: 8px;
  font-family: Arial, Helvetica, sans-serif;
}

nav a {
  color: rgb(64, 63, 63);
  text-decoration: none;
  font-size: 25px;
  font-weight: 800;
  display: inline-block;
  width: fit-content;
  padding: 4px 8px;
  border: 2px solid transparent;
}

nav a:hover {
  border: 2px solid rgb(64, 63, 63);
  text-decoration: none;
}

h1 {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 72px;
}

.project-card {
  border: 1px solid #777;
  padding: 26px 28px 28px;
  margin-bottom: 56px;
}

.project-card h2 {
  font-size: 32px;
  font-weight: 400;
  margin: 0 0 18px;
}

.project-card p {
  max-width: 980px;
  font-size: 19px;
  line-height: 1.55;
  font-style: italic;
  margin: 0 0 28px;
}

.image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 20px;
}

.image-row div {
  height: 220px;
  background: #d9d9d9;
  overflow: hidden;
  position: relative;
}

.image-row div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visit-link {
  color: #5aa178;
  font-size: 18px;
  text-decoration: none;
}

@media (max-width: 750px) {
  .page {
    padding: 40px 24px 70px;
  }

  header {
    flex-direction: column;
    gap: 28px;
    margin-bottom: 42px;
  }

  .site-title {
    font-size: 38px;
  }

  nav {
    flex-wrap: wrap;
    gap: 18px;
  }

  nav a {
    font-size: 22px;
  }

  h1 {
    font-size: 26px;
    margin-bottom: 48px;
  }

  .project-card {
    padding: 20px;
    margin-bottom: 36px;
  }

  .project-card h2 {
    font-size: 26px;
  }

  .project-card p {
    font-size: 17px;
  }

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

  .image-row div {
    height: 240px;
  }
}