body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 1rem;
    display: flex;
    justify-content: center;
}

.body-container {
    max-width: 80rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

main {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rounded-container {
    border-style: dashed;
    border-width: 1px;
    border-radius: 5px;
    border-color: black;
    padding: 1rem;
}

.social-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-container p {
    margin: 0;
}

.about-links
{
    justify-content: center;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.about-links li {
    list-style-type: none;
}

.content-links li + li
{
    margin-top: 0.5lh;
}

/* https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #0f0f0f;
    }
    h1, h2, h3, h4, h5, h6, p, li {
        color: #eee;
    }
    .rounded-container {
        border-color: #eee;
    }
    a:link {
        color: lightseagreen;
    }
    a:visited {
        color: purple;
    }
    a:visited:hover {
        color: violet;
    }
    a:hover {
        color: turquoise;
    }
    a:visited:active, a:active {
        color: red; 
    }
}