/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Centre page */
body, main {
    margin: auto;
}

/* Base */
body {
    color: #444;
    cursor: default;
    font-family: Roboto, sans-serif;
    font-size: 12px;
    line-height: 1.5;
    padding-top: 100px;
    text-align: justify; 
    text-decoration: none;
    width: 80%;
}

main {
    max-width: 600px;
}

/* Text indent */
main * {
    padding: 0 5px 0 30px;
}

a, div, h1, img, nav, nav *, span {
    padding: 0;
}

/* Title */
h1 {
    color: #333;
    font-family: Lexend, sans-serif;
    font-size: 67px;
    font-weight: normal;
    line-height: 1;
}

/* Subtitle */
header, footer {
    font-family: "Open Sans", sans-serif;
    font-size: 11px;
    line-height: 1;
    margin: -5px 0 10px;
}

footer, nav {
    text-align: center;
}

footer {
    font-style: italic;
}

/* Headers */
h2, h3, h4 {
    font-family: Lexend;
    margin: 16px 0 8px; 
    max-width: 600px;
    padding: 3px;
    text-align: left;
}

h2, h3 {
    background-color: #eee;
}

h2 {
    font-size: 18px;
    padding-left: 15px;
}

h3 {
    font-size: 16px;
    padding-left: 20px;
}

h4 {
    font-size: 14px;
    padding-left: 30px;
}

a, a:hover {
    color: #7559af;
    cursor: default;
    text-decoration: none;
}

a:hover {
    color: #888;
}

img {
    border: 1px solid #000;
}