:root {
  --color-1: #62B1FF;
  --color-2: #62B1FF;
  --color-3: #fcb421;
  --color-4: #62B1FF;
  --color-oxford-blue: #62B1FF;
  --color-night:       #151515;
  --color-wenge:       #5b4b49;
  --color-raisin:      #161925;
  --color-rose:        #503d42;
  --color-light-blue:  #039be5;

  /* Max widths */
  --title-max-width:   1200px;
  --content-max-width: 800px;
  --sidebar-max-width: 200px;

  --border-top-left:  10px;
  --border-top-right: 0px;
  --border-bot-right: 10px;
  --border-bot-left:  5px;
}

html {
  /* Fonts */
  font-family: 'Avantgarde', 'TeX Gyre Adventor', 'URW Gothic L', sans-serif;
  font-size: 100%;
  /* Center */
  display: table;
  margin: auto;
}

body {
  /* Center */
  display: table-cell;
}

a {
  color: var(--color-4);
  text-decoration: none;
}

a:hover {
  color: var(--color-3);
}

tt.sc {
  font-variant: small-caps;
}

h4 {
  color: var(--color-night);
}

pre {
  display: block;
  overflow: auto;
  margin: 0px;
  padding: 0px;
  word-wrap: normal;
}

code {
  font-size: 0.9em;
}

pre > code {
  display: block;
  text-indent: 0;
  white-space: inherit;
  font-size: 0.8em;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-left: 30px;
  margin-right: 30px;
  border-width: 1px;
  border-style: solid none solid none;
  border-color: #bfbfbf;
}

@media (min-width: 1200px) {
  .multi li {
    width: 50%;
  }

  ul.multi {
    display: flex;
    flex-wrap: wrap;
    list-style-type: square;
    margin: 2px;
  }
}

div.content {
  /* Colors */
  background-color: none;
  color: black;
  /* Padding and margins */
  padding: 0;
  margin-left: 50px;
  margin-right: 50px;
  margin-top: 10px;
  margin-bottom: 50px;
  /* Width */
  max-width: var(--content-max-width);
  /* Border */
  border-style: none; /* none none none solid; */
  border-width: 0; /* 10px; */
  border-color: var(--color-3);
  border-radius: var(--border-top-left) var(--border-top-right) var(--border-bot-right) var(--border-bot-left);
  /* Font */
  font-size: 18px;
  /* Flush to the right. */
  flex: 1;
  /* Text justification and hyphenization. */
  text-align: justify;
  text-justify: auto;
  hyphens: auto;
}

.content h1 {
  font-size: 2.2em;
  font-variant: small-caps;
}

.content h2 {
  font-size: 1.5em;
  font-variant: small-caps;
}

.content h3 {
  font-size: 1.25em;
  font-variant: small-caps;
}

.content h4 {
  font-size: 1.15em;
  font-variant: small-caps;
}

.content h5 {
  font-size: 1em;
  font-variant: small-caps;
}

.content p {
  margin-top: 25px;
  margin-bottom: 25px;
}

.content ul {
  list-style-type: square;
}
.content li {
  margin-bottom: 10px;
}

.content div.links {
  text-align: center;
  margin-top: 10px;
  margin-bottom: -10px;
  font-size: 35px;
}

.content .links a {
  color: black;
}

.content .links a:hover {
  color: var(--color-3);
}

/* Tables. */
.content table {
  margin: auto;
  text-align: center;
  border-collapse: collapse;
  border-style: solid none solid none;
  border-width: 1px;
}
.content td {
  min-width: 65px;
}
.content th {
  border-style: none none solid none;
  border-width: 1px;
  background-color: white;
}
.content tr:nth-child(odd) {
  background-color: white;
}
.content tr:nth-child(even) {
  background-color: #ececec;
}

img.portrait {
  display: block;
  border-radius: 80px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
  margin-bottom: 20px;
  padding: 3px;
  width: 210px;
  box-shadow: .1em .1em 5px 2px rgba(0, 0, 0, 0.5);
}

span.email {
  font-family: monospace;
  font-size: 0.9em;
  hyphens: none;
}

span.email b {
  display: none;
}

.spoiler {
  color: #cccccc;
  background-color: #cccccc;
}

.spoiler:hover {
  color: gray;
  background-color: white;
}

footer {
  text-align: center;
  color: gray;
}
