body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 6vw;
  background: white;
  color: black;
}

/* Nav Bar */
/* Nav Bar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid black;
  z-index: 1000;
}

nav a {
  display: block;            /* make link fill nav bar */
  width: 100%;               /* stretch full width */
  text-decoration: none;
  color: black;
  font-size: 6vw;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

nav a:hover {
  background: black;
  color: white;
}


/* Project Links Section */
.content {
  margin-top: 6vw; /* space for fixed nav */
  padding: 0;
}

.project-link {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: black;
  transition: all 0.2s ease;
}

.project-link:hover {
  background: black;
  color: white;
}
