:root {
    --bg-color: #202020;
    --text-color: #FFFFFF;
    --link-color: #CCCCCC;
    --visited-color: #CCCCCC;
    --socials: #295548;
    --text-shadow: #000000;
}

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;
}

.socials {
    text-align: center;
    padding: 15px;
    background-color: var(--socials);
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    text-shadow: 1px 1px 2px var(--text-shadow);
}