* {
  box-sizing: border-box;
}

body {
  color: rgb(17, 17, 17);
  background-color: #fff0f0;
  margin: 0;
  font: 400 16px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

a {
  color: #2a7ae2;
}

.site-title {
  color: #424242;
  font-size: 26px;
  font-weight: 300;
  line-height: 54px;
  letter-spacing: -1px;
  margin-bottom: 0;
  float: left;
}

.page-header {
  border-top: 5px solid #424242;
  border-bottom: 1px solid #e8e8e8;
  min-height: 55.95px;
  position: relative;
}
.page-header > div {
  display: flex;
  align-items: center;
}
.page-header nav {
  margin-left: auto;
}
.page-header nav a {
  text-decoration: none;
  margin-left: 1rem;
  color: #111;
  line-height: 1.5;
}

.page-content {
  margin-bottom: 5rem;
}
.page-content h1 {
  font-size: 42px;
  letter-spacing: -1px;
  line-height: 1;
}

.project-header {
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
}

.project-info a,
.project-info span {
  color: #424242;
  font-weight: bold;
}

.project-image {
  display: flex;
  flex-direction: column;
  /* justify-content: flex-end; */
}
.project-image img {
  /* aspect-ratio: 16 / 9; */
  aspect-ratio: 1;
  object-fit: cover;
  width: 5rem;
  height: 5rem;
  margin-bottom: 1rem;
}
.project-image img:first-child {
  width: 15rem;
  height: 15rem;
}

.project-content {
  text-indent: 4ch;
  margin-bottom: 8rem;
}

.wrapper {
  padding: 0 1rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 600px) {
  .project-header {
    flex-direction: row;
    justify-content: space-between;
  }
  .project-image {
    flex-direction: row-reverse;
  }
  .project-image img {
    margin-left: 1rem;
  }
  .project-content {
    max-width: 80ch;
    padding-left: 10rem;
  }
  .wrapper {
    max-width: 800px;
  }
}
