* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
  color: #111111;
  font-family: Georgia, "Times New Roman", serif;
}




.lab-header {
  margin: 25px 0 40px;
  padding-bottom: 14px;

  border-bottom: 1px dotted #dce8d2;
}

.lab-header h1 {
  margin: 0;

  font-size: 2.3rem;
  font-weight: bold;
}




.lab-page {
  max-width: 1000px;
  margin: 0 auto 60px;

  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
}




.lab-sidebar {
  text-align: center;

  border-right: 1px dotted #dce8d2;

  padding-right: 35px;
  margin-right: 45px;
}

.snoopy {
  width: 150px;
  display: block;

  margin: 0 auto 18px;
}

.home-link {
  color: #111111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-link:visited {
  color: #111111;
}




.lab-content {
  padding-top: 5px;
}

.project {
  margin-bottom: 55px;
}

.project:last-child {
  margin-bottom: 0;
}




.highlight {
  display: inline;
  background: #dce8d2;
  padding: 2px 6px;
}


/* PROJECT LINKS */

.project-link {
  color: #111111;
  text-decoration: none;

  font-size: 1.2rem;
}

.project-link:visited {
  color: #111111;
}

.project-link:hover {
  opacity: 0.75;
}


/* PROJECT TEXT */

.project p {
  margin-top: 12px;

  max-width: 500px;

  line-height: 1.7;
  font-size: 1rem;
}
.project p a {
  color: #111111;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.project p a:visited {
  color: #111111;
}

.project p a:hover {
  opacity: 0.7;
}




@media (max-width: 700px) {

  .lab-header {
    margin-bottom: 30px;
  }

  .lab-header h1 {
    font-size: 1.8rem;
  }

  .lab-page {
    grid-template-columns: 1fr;
  }

  .lab-sidebar {
    border-right: none;
    border-bottom: 1px dotted #dce8d2;

    margin-right: 0;
    margin-bottom: 30px;

    padding-right: 0;
    padding-bottom: 25px;
  }

  .snoopy {
    width: 120px;
  }

  .project {
    margin-bottom: 40px;
  }
}