nav {
    display: flex;
    flex-direction: column;
    padding: 10em 2em;
    text-align: center;
    align-items: center;
}

a {
    padding: 2rem;
    margin: 2rem;
    font-size: 32px;
    background-color: hsl(210, 10%, 22%);
    color: hsl(210, 15%, 98%);
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    width: fit-content;
    border-radius: 5px;
}

h1 {
    font-size: 52px;
    padding-top: 1.5rem;
}

h3 {
    font-size: 42px;
}

img {
    position: absolute;
    top: 0;
    left: 0;
}

.header {
    width: 100%;
    text-align: center;
}

.client-docs {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.internal-docs {
    padding-top: 5em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.md-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 1em;
}

hr {
    margin: 2em 0;
}

code {
    background-color: hsl(210, 15%, 86%);
    padding: .2em .4em;
}

/* Used to wrap bulk code tags */
pre {
    margin: 1em 0;
    background-color: hsl(210, 15%, 86%);
}

@media only screen and (min-width: 1024px) {
    .md-container {
        padding: 2em 10em;
    }
}