@font-face {
  font-family: 'Computer Modern';
  src: url('../fonts/cmunrm.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Computer Modern';
  src: url('../fonts/cmunti.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Computer Modern';
  src: url('../fonts/cmunbx.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Computer Modern", serif;
  line-height: 1.4;
  font-size: 16px;
  padding: 0 10px;
  margin: 50px auto;
  max-width: 650px;
}
#maincontent {
  max-width: 42em;
  margin: 15px auto;
}
a:link {
  color: darkblue;
}
a:visited {
  color: darkblue;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 40px;
  margin-bottom: 40px;
}
.grid-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.grid-item img {
  max-width: 100%;
  height: auto;
  display: block;
}
.grid-item .caption {
  font-style: italic;
  font-size: 14px;
  margin-top: 8px;
  margin-bottom: 20px;
}