body{
  font-family: DefaultFont;
  --text-color: white;
  color: var(--text-color);
  --bg-color: rgb(25, 25, 25);
  --bg-color-light: rgb(50, 50, 50);
  background-color: var(--bg-color);
}

a{
  text-decoration: none;
  color: inherit;
}

#contenu{
  padding: 20pt;
  text-align: justify;
}

#contenu a{
  color: rgb(150,150,255);
  transition-duration: .25s;
}

#contenu a:hover{
  transition-duration: .25s;
  color: rgb(220,220,255);
  text-decoration-line: underline;
}

#contenu p a {
    font-weight:lighter;
    font-family: DefaultFontBold;
    text-decoration: none;
}

#contenu p {
  line-height: 170%;
}

h1, h2 {
  font-family: TitleFont;
}

h1{
  margin-bottom: 5pt;
}

h3{
  font-family: TitleFont;
}

h4{
  font-family: DefaultFontBold;
}

ul>li {
  list-style: none;
}

li {
	margin-bottom: 10pt;
}

