* {
  margin: 0;
  box-sizing: border-box;
}
html {
  font-family: system-ui, sans-serif;
  background-color: whitesmoke;
  background-image: url("assets/svg/path_alt.svg");
  background-size: 120vw auto;
  background-position-x: -5vw;
  background-position-y: -5vw;
}
ul {
  list-style: none;
  padding: 0;
}
body {
  columns: 400px;
  max-width: 1500px;
  margin: auto;
  padding: 2rem;
  column-gap: 2rem;
}
body > * {
  margin-bottom: 2rem;
  break-inside: avoid;
  background: white;
  border: 5px solid;
  box-shadow: 8px 8px 1px #3333;
}
a {
  color: inherit;
}
a:hover {
  color: rgb(194, 13, 110);
}
article img {
  width: 100%;
}
article {
  font-size: 1.5rem;
}
figcaption {
  padding: 1rem;
  display: grid;
  gap: 0.5rem;
}
header {
  font-size: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
}
header span {
  white-space: nowrap;
}
footer {
  padding: 1rem;
  text-align: center;
  border-style: dashed;
}
.title-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}
.year {
  font-size: 0.8em;
  font-weight: bold;
  background: black;
  color: white;
  padding: 3px;
  /* border-radius: 3px; */
  box-shadow: 4px 4px 1px #3333;
}
.project-links {
  display: flex;
  gap: 1rem;
}
