* {
	font-family: Helvetica, Arial, sans-serif;
}

html, body {
	padding: 0;
	margin: 0;
	width: 100%
	height: 100%;
	max-width: 100%;
	overflow-x: hidden;
}

.button-wrapper {
	z-index: 0;
	position: absolute;
	display: flex;
	justify-content: space-between;
	transform: translate(-12.5%,-330pt);
	width: 100%;
	height: 350pt;
	pointer-events: none;
}

.button-container {
	position: relative;
	padding: 0 10pt 0 10pt;
	margin: 0;
	width: 150pt;
	z-index: 5;
}

#scroll-left-container {
	background-image: linear-gradient(to left,rgba(255,255,255,0) 10%, rgba(255,255,255,1) 35%, rgba(255,255,255,1));
}

#scroll-right-container {
	background-image: linear-gradient(to right,rgba(255,255,255,0) 10%, rgba(255,255,255,1) 35%, rgba(255,255,255,1));
}

.scroll-button {
	text-align: center;
	pointer-events: auto;
	width: 100pt;
	height: 75pt;
	border-radius: 100px;
	background-color: aliceblue;
	margin: 1rem;
	margin-top: 120pt;
	z-index: 10;
}

.scroll-button > p {
	width: 100%;
	padding-top: 50%;
	height: 100%;
	transform: translate(0px,-20pt);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

article > h1 {
	font-weight: normal;
}

article {
	width: 75%;
	margin: auto;
	padding: 2rem;
}

.carousel {
	display: flex;
}

.carousel > .article-entry {
	width: 300pt;
	flex: 0 0 300pt;
}

.two-cols {
	display: grid;
	grid-template-columns: auto auto;
}

@media screen and (max-width: 768px) {
	.two-cols {
		grid-template-columns: auto;
	}
	#scroll-left-container {
		background-image: none;
	}
	#scroll-right-container {
		background-image: none;
	}
	.button-wrapper {
		transform: translate(0,-110pt);
		width: 100%;
		justify-content: flex-start;
	}
	.button-container {
		padding: 0;
		width: auto;
	}
	.carousel > .article-entry {
		width: 250pt;
		flex: 0 0 250pt;
	}
}

.article-entry {
	position: relative;
	z-index: 0;
	background: aliceblue;
	margin: 1rem;
	padding-bottom: 1rem;
	border-radius: 1rem;
	box-shadow: 2px 7px 5px #E0E8EF;
	overflow: hidden;
}

.article-entry > * {
	text-decoration: none;
}

.article-entry > a > img {
	max-width: 100%;
	padding-bottom: 1rem;
}

.article-entry > a > b, .article-entry > a > p {
	padding: 0rem 1rem 0rem 1rem;
}

header {
	display: flex;
	justify-content: space-between;
	width: 100%;
	height: 40pt;
}

header > a {
	width: 50pt;
	height: 50%;
	margin: 1rem 1rem -1rem 1rem;
}

.nav-bar {
	display: flex;
	justify-content: space-between;
	margin: 0rem 3rem 1rem 2rem;
	width: 130pt;
	right: 0;
	text-align: right;
}

.nav-bar > a {
	text-decoration: none;
	color: #000000;
}
