body {
  max-width: 44em;
  margin: auto;
  font-size: 1em;
  font-family: sans-serif;
}

.custom-list {
  list-style: none;
  counter-reset: item;
  padding-left: 3em;
}

.custom-list li {
  counter-increment: item;
  position: relative;
}

.custom-list li::before {
  content: counter(item, lower-alpha) ")";
  position: absolute;
  left: -1.5em;
}

/* Nav */

ul.nav {
  display: flex;
/*
  float: right;
*/
  gap: .5em 1em;
  list-style: none;
  padding: 0;
/*
  margin: 0;
*/
}
.nav-item {
  display: inline-block;
}
.nav-item a[href]:not(:hover) {
  text-decoration: none;
}
.nav a[href][aria-current="page"] {
  text-decoration: underline;
}

div.nav-home {
  background-color: #ea0;
}

div.nav-news {
  background-color: #c4e;
}

div.nav-kaninchen {
  background-color: #8fc;
}

div.nav-about {
  background-color: #8e1;
}

a {
  color: #000;
}

/* Boxed */

.boxed {
  /*
  border: 1px solid black;
  */
  width: 6rem;
  text-align: center;
}

/* Post list */

.postlist-item {
  list-style-type:none;
  margin-bottom: 1em;
}

div.post-item-content {
  /*
  border: 1px solid black;
  */
  background-color: #eee;
}


/* Images */

figure, figcaption, img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

figcaption {
  text-align: center;
  font-style: italic;
}

img {
  width: 50%;
}
