/* Reset the page to be calm and empty */
body {
  background-color: #eeebd9;
  color: #282427;
  font-family: "Courier New", Courier, monospace;
  height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: left;
  max-width: 600px;
  padding: 2rem;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
  letter-spacing: -1px;
}

.tagline {
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.links {
  list-style: none;
  padding: 0;
}

.links li {
  margin-bottom: 1rem;
}

.links a {
  text-decoration: none;
  color: #282427;
  border-bottom: 1px solid #282427;
  padding-bottom: 2px;
  transition: color 0.3s;
}

.links a:hover {
  color: #555;
  border-bottom: 1px dotted #555;
}

.lab-link {
  font-size: 1.5rem; /* Bigger than normal text (1rem), smaller than H1 (2.5rem) */
  font-weight: bold;
  display: inline-block; /* Helps it sit nicely with the margin */
  margin-bottom: 0.5rem; /* A little extra space below it */
}
