.sitemap-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 6em 1rem 3em;
}

.sitemap {
    background-color: var(--offwhite);
    margin: 0 auto auto;
    gap: 2em;
    flex-direction: row;
    padding: 1em;
    border: 1px solid var(--lightgray);
    display: flex;
    flex-wrap: wrap;
	justify-content: space-evenly;
}

.sitemap-container h1 {
    text-align: center;
}

.sitemap h2 {
    font-size: var(--h5);
    font-weight: 500;
}

.sitemap h2,
.sitemap li {
    margin-bottom: 0.25em;
}

.sitemap a {
    color: var(--arthurMurrayBlue);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease-out;
}

.sitemap a:hover {
    color: var(--mediumblue);
    transition: 0.3s ease-out;
}

.sitemap-nav {
	width: 45%;
}

@media screen and (min-width: 1000px) {
	.sitemap {
		padding: 2em;
	}
	.sitemap-nav {
		width: 21%;
	}
}