/* Global style */
body {
    background: #e3d1ff;
    color: #000;
    max-width: 900px;
    padding-left: 2%;
    padding-right: 3%;
    margin: 0 auto;
    font-size: 16px;
    font-family: fabfont, monospace;
}

#content {
    min-height: 800px;
}

/* Footer style */
#footer {
    width: 100%;
    max-width: 900px;
    text-align: center;
    font-size: 12px;
    margin-top: 2em;
}

/* Header style */
#header {
    padding-top: 2%;
    display: block;
    margin: auto;
    max-width: 400px;
    text-align: center;
    text-transform: uppercase;    
}

#header .title {
    font-size: 19px;
}

#header nav {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}

/* Writing style */
a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

img {
    border: 1px #000 solid;
    width: 100%;
    height: auto;
}

em {
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    background: rgb(112, 26, 161);
    color: rgb(237, 221, 255);
    padding-left: 4px;
    padding-right: 4px;
    border-radius: 2px;
}

/* Section style */
section {
    margin-top: 4em;
}

section .title {
    font-size: 17px;
    font-weight: bold;
    text-transform: uppercase;    
}

section p {
    text-align: justify;
    font-size: 16px;
}

section ul {
  --icon-size: 24px;
  --gutter: .5em;
  padding: 0 0 0 var(--icon-size);
}

section ul li {
  padding-left: var(--gutter);
}

section ul li::marker {
  content: "\2605"; /* FontAwesome Unicode */
  font-size: var(--icon-size);
}

section ul.empty_list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

section ul.empty_list li {
  padding-left: 0;
}

section ul.empty_list li::marker {
    content: ""
}

/* Sub-section */
section section .title:before {
    content: "\21B3";
    padding-right: 1%;
    font-weight: bold;
    font-size: 28px;
}

section section {
    padding-left: 3%;
}

/* Special stuff */
.bar {
    background: #000;
    height: 4px;
    width: 100%;
    margin-top: 8px;
    margin-bottom: 8px;
}

section section .bar {
    height: 2px;
    margin-left: auto;
    width: 97%;
    margin-top: 2px;
}