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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
  color: #fff;
}

.site-header {
  min-height: 10vh;
  padding: 1.5vh;
}

.nav {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  position: relative; 
}


.nav-menu {
  position: absolute;
  top: 3rem;
  right: 0;

  background: #111;
  border: 1px solid #444;
  padding: 1rem;
  width: 160px;

  display: none;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  z-index: 10;
}

#nav-toggle:checked + .hamburger + .nav-menu {
  display: grid;
}

.nav-menu a {
  text-decoration: none;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.nav-menu a:hover {
  opacity: 0.7;
}

.hamburger {
  font-size: 1.5rem;
  cursor: pointer;
  justify-self: end;
}

/* checkbox */
#nav-toggle {
  display: none;
}

/* hidden */
.nav-menu {
  display: none;
  grid-column: 1 / -1;
  list-style: none;
  margin-top: 1rem;
}

.nav-menu li {
  margin-bottom: 0.5rem;
}

.nav-menu a {
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
}

/* show */
#nav-toggle:checked + .hamburger + .nav-menu {
  display: block;
}

.hero {
  margin-top: 4rem;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.title {
  font-size: 2.2rem;
  line-height: 1.1;
}


.main-content {
  padding: 1.5rem;
}

.projects h3 {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-decoration: none;
  color: white;
}


.project-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.project-list li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  font-size: 0.85rem;
  border-bottom: 1px solid #444;
  padding-bottom: 0.5rem;
    text-decoration: none;
  color: white;
}

a {

    text-decoration: none;
  color: white;
  
}

a:hover {

  /* opacity: 75%; */
  
  text-decoration: underline;
transition: 0.5s; 

}


.site-footer {
  padding: 1rem;
  text-align: center;
  font-size: 0.75rem;
  border-top: 1px solid #444;
}



@media (min-width: 900px) {


  .title {
    font-size: 4.5rem;
    line-height: 1;
  }

  .eyebrow {
    font-size: 0.9rem;
  }

  .main-content {
    padding: 3rem;
  }


  .projects h3 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }

  .project-list li {
    font-size: 1.1rem;
    grid-template-columns: 2fr 1fr 1fr;
    padding-bottom: 1rem;
  }

  .site-footer {
    font-size: 0.85rem;
  }
}


