@font-face {
    font-family: 'Blau 7pt';
    src: url('../fonts/Blau7pt.woff2') format('woff2'),
        url('../fonts/Blau7pt.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
  --grid-color: #969696;
  --main-color: black;
}



main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: rgba(255,255,255,.7);
}

section {
  border: 1px solid var(--main-color);
  position: relative;
  box-shadow: -6px 6px 0 var(--main-color);
}

section#about {
  width: 100ch;
  height: 80vh;
}

h3 {
  font-family: 'Blau 7pt';
  font-size: 42px;
  color: var(--main-color);
  position: absolute;
  top: -79px;
  left: 30px;
  padding: 0 8px;
  z-index: 2;
}

h3::after {
  content: '';
  background: white;
  width: 240px;
  height: 16px;
  position: absolute;
  top: 22px;
  left: -22px;
  z-index: -1;
}

.content {
  padding: 2em;
  font-size: 11px;
  height: 90%;
  overflow-y: scroll;
  position: relative;
  background: white;
}

.content img {
  margin: 2em auto;
  display: block;
}

p {
  line-height: 1.5em;
}

.note {
  margin-top: 1em;
  font-size: 10px;
}

p.list-title {
  margin-top: 12px;
}

.strikethrough {
  text-decoration: line-through;;
}

ul {
  list-style-type: none;
  margin: 6px 6px 12px 6px;
}

li::before {
  content: '';
  margin-right: 4px;
  color: var(--main-color);
}





