html {
	background-color: #f5f5f4;
	scroll-behavior: smooth;
	scroll-padding: 1rem;
}

main {
	max-width: 42rem;
	margin: auto;
}

h1, h2, h3, h4, h5, h6, p, span {
	color: #1c1917;
}

h1 {
	font-family: "Roboto Slab", sans-serif;
	text-align: center;
	margin-bottom: 0px;
	margin-top: 4rem;
}

h2 {
	font-family: "Roboto Slab", sans-serif;
	margin-bottom: 0.4rem;
	margin-left: 0.5rem;
}

p {
	font-family: Roboto, sans-serif;
	margin-top: 0px;
	margin-left: 0.5rem;
	font-size: 1rem;
	line-height: 1.5rem;
}

img {
	width: 100%;
	height: auto;
}

hr {
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.subtitle {
	color: #44403c;
	font-size: 0.875rem;
	line-height: 1.25rem;
	text-align: center;
	margin-bottom: 1rem;
}

.hint {
	color: #44403c
}

.content-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.content-section>a {
	line-height: 1.7rem;
}

.content-title {
	margin-left: 0px;
}

/* Slideshow container */
.slideshow-container {
	max-width: 1000px;
	position: relative;
	margin: auto;
}

/* Hide the images by default */
.slides {
	display: none;
}

/* Next & previous buttons */
.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	margin-top: -22px;
	padding: 16px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	transition: 0.3s ease;
	border-radius: 0 7px 7px 0;
	user-select: none;
}

/* Position the "next button" to the right */
.next {
	right: 0;
	border-radius: 7px 0 0 7px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

/* Number text */
.numbertext {
	color: #f2f2f2;
	background-color: rgba(0, 0, 0, 0.4);
	border-radius: 0 0 7px 0px;
	border: 0px solid black;
	font-family: Roboto, sans-serif;
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 0;
}

/* The dots/bullets/indicators */
.dot {
	cursor: pointer;
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.4s ease;
}

.active, .dot:hover {
	background-color: #717171;
}