/* I've been using this guide in order to do styling.
http://jgthms.com/web-design-in-4-minutes/#primary-color */

body {
    margin: 0 auto;
    max-width: 35em;
    font-family: 'Cormorant', serif;
    font-size: 1.25em;
    line-height: 1.5em;
    padding: 4em 1em;
    background-color: rgba(5, 5, 12, 0.897);
    color: rgba(219, 219, 217, 0.959);
}

header {
    text-align: center;
}

h1,
h2,
strong {
    color: rgb(255, 255, 255);
}

h2 {
    margin-top: 1em;
    margin-bottom: 1em;
    padding-top: 1em;
    padding-bottom: 1em;
}

#intro {
    font-variant: small-caps;
    font-size: 1.33em;
    text-align: justify;
}

footer {
    font-size: 0.75em;
    color: #ffffff;
    text-align: center;
}