/**************/
/* CSS REMEDY */
/**************/
*,
*::after,
*::before {
	box-sizing: border-box;
}






/*********************/
/* CUSTOM PROPERTIES */
/*********************/

:root {
	/* startje */
	--color-text: #111;
	--color-background: #eee;
}

/****************/
/* JOUW STYLING */
/****************/

body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	color: #111;
	background: #fff;
}

img {
	max-width: 100%;
	display: block;
}

ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

header>a:nth-of-type(1) {
	background: pink;
	padding: 1em;
	text-align: center;
}

header {
	padding: 1em;
	position: sticky;
	top: 0;
	background: #fff;
	visibility: hidden;
}

header img {
	height: 30px;
}

h1 {
	visibility: hidden;
}

h2 {
	font-size: 18px;
	margin: 20px 10px 10px;
}

main>section:first-of-type img {
	width: 100%;
	height: auto;
	margin-bottom: 1em;
}

main>section:first-of-type ul {
	display: flex;
	overflow-x: auto;
	gap: 10px;
	padding: 0 10px 10px;
}

main>section:first-of-type ul li {
	flex: 0 0 85%;
	text-align: center;
}

main>section:nth-of-type(2) ul,
main>section:nth-of-type(3) ul {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	padding: 0 10px 10px;
}

main>section:nth-of-type(2) ul li,
main>section:nth-of-type(3) ul li {
	padding: 10px;
	text-align: center;
}

main>section:nth-of-type(4),
main>section:nth-of-type(5) {
	padding: 10px;
}

main>article {
	padding: 10px;
}

main>article>a img {
	width: 100%;
	height: auto;
	margin: 10px 0;
}

main>section:nth-of-type(2) ul,
main>section:nth-of-type(3) ul,
main>section:nth-of-type(4) ul {
	display: block;
	padding: 0 10px 10px;
}

main>section:nth-of-type(2) ul li,
main>section:nth-of-type(3) ul li,
main>section:nth-of-type(4) ul li {
	padding: 10px 0;
}

footer {
	background: #111;
	color: #fff;
	text-align: center;
	padding: 20px;
	font-size: 12px;
}

main>section:nth-of-type(2) ul,
main>section:nth-of-type(3) ul {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

main>section:nth-of-type(2) ul li,
main>section:nth-of-type(3) ul li {
	flex: 0 0 50%;
	scroll-snap-align: start;
	padding: 10px;
	text-align: center;
}