body {
  display: flex;
  flex-direction: column;
  place-items: center;
}

body > * {
  width: 60ch;
}

header {
  margin: 0;
  padding: 0;
}

.description .tags {
  padding-bottom: 0.25rem;
}

a.tag {
  border-radius: 1rem;
  border: solid 1px gray;
  background: darkslategray;
  color: white;
  padding: .25rem .4rem;
  font-size: .6rem;
  margin: 0;
  font-family: sans-serif;
  white-space: nowrap;
  line-height: 1.5rem;
}

a:link {
  text-decoration: unset;
}

a.tag:hover {
  border: solid 1px white;
  opacity: 0.8;
}

main {
  margin: 0;
  padding: 0;
}

section.description {
  box-sizing: border-box;
  margin-bottom: 0.5rem;
}

section.description p:last-of-type {
  margin-bottom: 0;
}

.projects {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.5rem;
}

.project {
  margin: 0;
}

.project p {
  margin: 0;
  padding: 0;
}

h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h3 {
  margin: 0;
}

.time {
  font-size: 0.8rem;
  font-style: oblique;
  margin-bottom: 0.25rem;
}

@media (max-width: 480px) {
  body > * {
    width: auto;
    margin: 0;
  }
  .projects {
    display: flex;
    flex-direction: column;
  }
}
