@font-face {
  font-family: 'underwood_championregular';
  src: url('underwood_champion-webfont.woff') format('truetype');
}

@font-face {
  font-family: 'OldNewspaperTypes';
  src: url('OldNewspaperTypes.ttf') format('woff');
}

html {
  font-size: 16px;
}

body {
  background-color: #000000;
  margin: 0;
  padding: 0;
  font-family: OldNewspaperTypes;
}

.container {
  display: flex;
  width: 100%;
  margin: 0 auto;
  background-color: #ffffff;
}

.sidebar {
  display: flex;
  flex-direction: column;
  width: 20%;
  padding: 0 2%;
  background-color: silver;
  border-right: 4px solid #000000;
}

.sidebar .info {
  text-align: center;
}

.content {
  display: flex;
  flex-direction: column;
  width: 60%;
  padding: 0 5%;
  min-height: 100vh
}

.sidebar2 {
  display: flex;
  flex-direction: column;
  width: 20%;
  padding: 0 2%;
  background-color: silver;
  border-left: 4px solid #000000;
}

.sidebar2 .info {
  text-align: center;
}

h1, h2, h3, h4, h5 {
  font-family: underwood_championregular, Arial;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-top: 2rem;
  margin-bottom: 5rem;
}

h2 {
  text-align: center;
  font-size: 1.8rem;
}

h3 {
  font-size: 1.6rem;
  margin-top: 0.7rem;
  margin-bottom: 0.7rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  text-align: right;
  font-size: 1.3rem;
}

p.ident {
  text-indent: 40px;
  text-align: justify;
}

p.exergue {
  text-align: right;
  font-style: italic;
}

p.formule {
  text-indent: 120px;
  text-align: justify;
}

p.date {
  text-align: right;
}

p.signature {
  text-align: right;
  margin-bottom: 5rem;
}

p.italic {
  text-indent: 40px;
  font-style: italic;
  text-align: justify;
}

p.formuleitalic {
  text-indent: 120px;
  font-style: italic;
}

p {
  text-align: justify;
  font-family: OldNewspaperTypes, Arial;
  font-weight: bold;
  font-size: 1rem;
  line-height:22px;
}

a,
a:visited,
a:active {
  color: #000000;
  text-decoration: none;
}

a:hover {
  opacity: 0.6;
}

ul {
  list-style: disc;
}

@media screen and (max-width: 960px) {


.container {
	display: grid;
	margin: 0;
	padding: 0;
}

.content {
	width: 90%;
	display: grid;
}

.sidebar {
	width: 100%;
	display: grid;
	padding: 0 5%;
	border-bottom: 4px solid #000000;
  border-right: none;
}

.sidebar2 {
	width: 100%;
	display: grid;
	padding: 0;
	border-top: 4px solid #000000;
  border-left: none;
}

}