@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro');

:root {
	--blue: #a4b9d5;
}

::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

::-webkit-scrollbar-track {
	border-radius: 10px;
}

::-webkit-scrollbar-thumb {
	background: #a0a0a0;
	border-radius: 10px;
}

body {
	background-color: #f8f8f8;
	color: #a0a0a0;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 12px;
}

a {
	text-decoration: none;
	color: var(--blue);
}

a:hover {
	text-decoration: none;
	color: black;
	transition: 0.2s ease all;
}

h1 {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: black;
}


ul {
	display: flex;
	justify-content: space-evenly;
	padding: 0;
}

li {
	display: contents;
	color: var(--blue);
	cursor: pointer
}

li:hover {
	color: black;
	transition: 0.2s ease all;
}

li + li::before {
	content: '—';
}

.container {
	position: relative;
	top: 50px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 100px;
}

.header {
	text-align: center;
	margin-right: auto;
	margin-left: auto;
}

.piece {
	width: 500px;
	margin-bottom: 100px;
	border-radius: 3px;
}

.desc {
	padding: 0;
	margin: 0;
	position: relative;
	top: -90px;
}

.header {
	width: 250px;
	position: sticky;
}

.sidebar {
	margin-left: 50px;
	float: left;
	width: 250px;
	height: 100px;
	background-color: white;
	padding: 20px;
	border-radius: 3px;
	position: fixed;
	top: 293px;
}

.divider {
	border-top: 2px solid #f8f8f8;
	margin: 0 -20px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.highlight {
	color: black;
	background: linear-gradient(#a4b9d550, #a4b9d550) 0 100% / 100% 8px no-repeat;
}

#display {
	width: 500px;
	margin: 100px auto 100px auto;
}

#scroll {
	display: none;
	position: fixed;
	bottom: 50px;
	right: 50px;
	z-index: 99;
	border: none;
	outline: none;
	cursor: pointer;
	background: none;
	color: var(--blue);
	font-size: inherit;
	font-family: inherit;
	font-weight: 800;
}

#scroll:hover {
	color: black;
	transition: 1s ease all;
}

@media screen and (max-width: 1250px) {
	.sidebar {
    	float: none;
    	margin-top: 0;
		position: relative;
		top: 50px;
		margin-right: auto;
		margin-left: auto;
	}
}
