@charset "utf-8";
/* CSS Document */


/* 1. Enable smooth scrolling */


/* 2. Make nav sticky */
.scrollspy>nav {
	position: sticky;
	top: 6.8rem;
	align-self: start;
	margin-right: 1.5rem;
}

/* 3. .scrollspy active styles (see JS tab for activation) */
.scrollspy .section-nav li.active>a {
	color: #ffffff;
	background: #0b1727;
}

/* Sidebar Navigation */
.scrollspy .section-nav {
	padding-left: 0;
}

.scrollspy .section-nav a {
	text-decoration: none;
	display: block;
	padding: .5rem .75rem;
	color: var(--step-1100);
	transition: all 50ms ease-in-out;
	/* 💡 This small transition makes setting of the active state smooth */
	border-radius: .5rem;
}

.scrollspy .section-nav a:hover {
	color: var(--step-1100);
	background: var(--step-light);
}

/* .scrollspy .section-nav a:focus {
	color: #ffffff;
	background: #0b1727;
} */

/** Poor man's reset **/

.scrollspy .section-nav ul,
.scrollspy .section-nav ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

/** page layout **/
.scrollspy {
	display: grid;
	grid-template-columns: 15rem 1fr;
}