body {
  margin: 0;
  background-color: rgb(0,0,0);
  color: rgb(128,128,128);
  font-family: system-ui, "Sego UI", sans-serif;
}

/* ul.projects>* {transition: all 1s;} */

header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

ul.projects {
  margin: 3vw 20vw;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

li.projectlink {
  margin: 1.5rem 1rem;
  padding: 0;
  outline: 1.5rem solid rgba(50,50,50,.15);
  background-color: rgba(50,50,50,.25);
  border-radius: 4rem;
  box-shadow: 0 0 3rem #222;
}

.projectlink a {
  color: rgb(200,200,200);
  text-decoration: none;
  display: block;
  padding: 2.5rem 2rem;
  font-weight: bold;
}

li.done a:visited {color: rgb(100,100,100);}

.projectlink a:link {}
.projectlink a:visited {color: rgb(150,150,150);}
.projectlink a:hover {text-shadow: 0 0 2rem #aaa;}

