* {
  padding: 0;
  margin: 0.5;
  box-sizing: border-box;
}

body {
  background: url('your-background.jpg') center center fixed;
  background-size: cover;
  font-family: serif;
  font-weight: 400;
  background-color: rgb(0, 0, 0);
  color: rgb(255, 253, 253);
}

a {
  text-decoration: none;
  color: rgb(0, 0, 0);
}

p {
  font-weight: 400;
  font-size: 1.1rem; /* or 18px */
  line-height: 1.5;
}

.link {
  font-weight: 200;
  color: #3399FF(0, 0, 0);
  font-size: 1.1rem;
}

ul {
  list-style-type: none;
  margin-left: .5rem; /* indent only the list */
}

.nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 2.5em 1fr;
  width: 100%;
  padding: 20px;

  /* NEW additions below */
  margin-left: 2.2rem; /* adjust horizontal shift */
  margin-top: 3.2rem;  /* adjust vertical shift */
}

#bio-text {
  margin-top: 2.2em; /* spacing below last link */
  font-size: 1.1rem;
  font-weight: 400;
}
#bio-text a {
  color: inherit;         /* match parent text color */
  text-decoration: none;  /* remove underline */
}

/* WORK PAGES */

.gallery {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  padding: 10px;
}

#gallery-item {
  padding-bottom: 30px;
}

.contributors-text {
  width: 700px;
  font-size: 13px;
}

.fix {
  position: fixed;
}

.work-img {
  width: 500px;
}

@media screen and (max-width: 700px) {
  .contributors-text {
    width: 100%;
    font-size: 14px;
  }

  .work-img {
    width: 100%;
  }
}

body.home {
  font-size: 2.5em;
}

ul li {
  margin-bottom: 2em;
}
ul li a {
  font-size: 1.1rem; /* adjust this value as needed */
  font-weight: 400;
}
a {
  color: #3399FF;
  text-decoration: underline;
}

.logo img {
  height: 2em;
  vertical-align: middle;
}

.name-block {
  font-size: 1.1rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  #index-page {
    text-align: left !important;
  }

  #index-page div,
  #index-page ul,
  #index-page li,
  #index-page a {
    text-align: left !important;
    margin-left: 0 !important;
  }
}