html,
body {
  margin: 0;
  padding: 0;
}

/* https://stackoverflow.com/a/25829844 */
/*https://la-cascade.io/articles/pourquoi-height-100-ne-marche-pas */

body {
  background-color: #000000;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
}

h1,
h2,
h3 {
}

.flex {
  display: flex;
}

.flex.col {
  flex-direction: column;
}

.flex.row {
  flex-direction: row;
}

header {
  background-color: #000000;
  background-image: linear-gradient(#525151, #000000);
  background-position: right;
  background-repeat: no-repeat;
  text-align: center;
  font-size: 1em;
  font-style: italic;
  color: #FFFFFF;
  padding: 3em;
}

header h1 {
  margin-top: 0;
}

nav {
  padding: 20px 5px 5px 20px;
  font-weight: bold;
  float: left;
  width: 160px;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding-left: 0;
  font-size: 1.2em;
}

nav a:link {
  color: #FFFFFF;
}

nav a:hover {
  color: #777372;
}

#content {
  margin-top: 40px;
  background-color: #000000;
  margin-left: 380px;
  padding: 1px 20px 20px 30px;
  display: flex;
  align-items: center;
  height: 100%;
  flex-direction: column;
}

#contact {
  font-size: 90%;
}

footer {
  background-color: #000000;
  padding: 20px;
  font-size: 75%;
  font-style: italic;
  margin-left: 190px;
}