@import url('https://fonts.cdnfonts.com/css/jost');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Jost*", sans-serif;
    font-size: 16pt
}

body {
    color: #e0def4;
    background-color: #232136;
    line-height: 1.5;
    display: grid;
    grid-template-columns: 1fr min(50rem, 80%) 1fr;
    margin: 0;
}

/* Push to a central column */
body > * {
    grid-column: 2;
}

header {
    text-align: center;
    padding: 0 0.5rem 0.5rem 0.5rem;
}

.page-title {
    font-weight: bold;
    font-size: 2rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  padding: 0 66px;
}

.nav-link {
    position: relative;
    font-size: 1.1rem;
    font-weight: bold;
}

hr {
  width: 100%;
  text-decoration-color: #c4a7e7;
}

a {
    color: #f6c177;
    text-decoration-line: none;
}
a:hover,
a:focus {
    text-decoration-line: underline;
}

ul {
  margin-top: 16px;
}

p {
  margin-top: 8px;
  margin-bottom: 8px;
  text-align: justify;
}

li + li {
  margin-top: 8px;
}

img {
  display: block;
  margin: auto;
  box-shadow: 0px 0px 3px #e0def4;
}

table {
  margin: auto;
  box-shadow: 0px 0px 3px #e0def4;
  text-align: left;
  min-width: 400px;
}

td {
  padding: 3px 3px;
}

th {
  color: #c4a7e7;
}

.footdef {
  display: flex;
  gap: 5px;
}

h2 {
  text-decoration-line: underline;
  text-decoration-color: #c4a7e7;
  text-decoration-thickness: 3px;
  font-size: 1.5rem;
}

h3 {
  text-decoration-line: underline;
  text-decoration-color: #c4a7e7;
  text-decoration-thickness: 1px;
}

.org-center {
  display: block;
  margin: auto;
  width: 50%;
  text-align: center;
}

.org-center > p {
  text-align: center;
}
