:root {
    --bg-color: #202020;
    --text-color: #FFFFFF;
    --link-color: #CCCCCC;
    --visited-color: #CCCCCC
}

body {
    background-color: var(--bg-color);
    color: var(--text-color)
}

a {
    color: var(--link-color)
}

a:visited {
    color: var(--visited-color)
}

.content-wrapper {
    margin: 0 auto;
    width: 50%;
}

.content-wrapper h1 {
    text-align: center;
}

.content-wrapper img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.content-wrapper p {
    text-indent: 20px;
}