/* *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

html {
    height: 100%;
}

body {
    /* background-image: url('./images/chrome-abstract-pyramid-skeme.png'); */
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    margin: 0rem;
}

h1 {text-align: center;}

/* header {

} */

#header-contents {
    border-bottom: 1px solid black;
    padding-bottom: 2rem;
    margin: 1rem;
}

#site-header, #site-footer {
    text-align: center;
    display: flex;
    justify-content: center;
}

article header {
    text-align: left;
    border-bottom: none;
    padding: 0rem;
    margin: 0rem;
}

article {
    border-bottom: 1px solid black;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

header img {
    max-width: 200px;
}

footer {
    margin: 2rem 0rem;
}

footer a, footer a:visited {
    color: white;
    text-decoration: none;
}

footer .social-links svg {
    width: 30px;
}

footer .social-links svg {
    fill: white;
}

a {
    text-decoration: none;
}

p {
    margin-bottom: 1rem;
}

ul {
    padding: 0px;
}

.social-links svg {
    width: 30px;
}

.social-links svg {
    /* fill: white; */
}

.social-links li {
    display: inline;
    padding: 0rem 2rem;
}

.social-links li {
    display: inline;
    padding-left: 2rem;
}

img {
    width: 600px;
    max-width: 90%;
    display: inline-block;
}

.hidden {
    visibility: hidden;
    height: 1px;
    padding: 0px;
    margin: 0px;
}

footer {
    padding: 4rem;
    background-color: black;
    color: white;
}

#footer-section-1 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

nav ul {
    list-style: none;
    margin: 0rem;
}

nav ul li {
    display: inline-block;
    padding: 0rem 0.5rem;
}

body main {
    display: flex;
    justify-content: center;
    min-height: 70vh;
}

.wrapper {
    width: 1000px;
}

article h1 {
    text-align: left;
    letter-spacing: -.2rem;
    text-transform: uppercase;
    font-size: 4rem !important;
    line-height: 3.3rem !important;
}

article h2 {
    font-size: 2rem;
    line-height: 2rem;
    margin-bottom: 1rem;
}

article h3 {
    font-size: 1.7rem;
    line-height: 1.7rem;
    margin-bottom: 1rem;
}

article h4 {
    font-size: 1.2rem;
    line-height: 1.2rem;
    margin-bottom: 1rem;
}

article p {
    margin-bottom: 2rem;
}

article ul {
    list-style: disc;
    margin-left: 2rem;
}

#updated-date {
    margin-bottom: 1rem;
    display: inline-block;
}


a.button, a.button:visited {
    display: inline-block;
    text-decoration: none;
    color: black;
}

.button {
    border: 1px solid black;
    padding: 0.5rem 1rem;
}

@media (max-width: 768px) {
    body {
        height: 100vh;
    }

    img {
        width: 90%;
    }

    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.7rem;
    }

    h3 {
        font-size: 2rem;
    }

    p {
        font-size: 1.5rem;
    }

    .wrapper {
        max-width: 100%;
        margin: 0rem 1rem;
    }

    .social-links li {
        display: inline;
        padding-left: 0.2rem;
        padding-right: 0.2rem;
    }

    #footer-section-1 {
        display: block;
    }

    footer nav {
        margin-top: 4rem;
    }
}