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






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





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

/* jouw code */

h2 {
	display: flex;
	justify-content: center;

	font-size: 0.9em;
	color: var(--color-text);
}

a{
	text-decoration: none;
}




section li {
	list-style-type: none;
}


/* section 1 */
section:nth-of-type(1) svg {
	width: 1.1em;
	height:auto;

	color: var(--color-text);
	@media (prefers-color-scheme:dark){
		filter:invert(1);
	}
}

section:nth-of-type(1){
	display:flex;

	justify-content: center;
	gap:16em;
}

section:nth-of-type(1) ul{
	display:flex;
	flex-direction: row;

	align-items: center;
	justify-content: center;

	gap: 0.5em;
}


/* section 2 */
section:nth-of-type(2) ul {
	display:flex;
	overflow-x:auto;
	flex-shrink:0;
	gap:1.5em;
	
}



section:nth-of-type(2) li{
	display:inline-block;
	flex-wrap:wrap;
	justify-content:center;
	flex-direction:column-reverse;	
	white-space: nowrap;
}

section:nth-of-type(2) img {
	width:4em;
	border-radius: 50%;
	border: 3px solid #e0164a;
}


section:nth-of-type(2) a {
	text-decoration: none;
	color:var(--color-text);
	font-size: 0.9em;

	justify-content: center;

	
}



/* section 3 */
section:nth-of-type(3) ul{
	display:flex;
	flex-direction: row;
	flex-wrap: wrap;

	gap: 0.5em;

	padding: 0 0 0 6%;
}

section:nth-of-type(3) li{
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 2fr;	
}


section:nth-of-type(3) article img {
	width:12em;
	height: auto;
	display:flex;
}

section:nth-of-type(3) article button {
	width:2em;

	position: relative;
	bottom:34%;
	left:83%;
	padding: 1em 0.8em;

}

section:nth-of-type(3) article button svg {
	width:1.5em;

	position: absolute;
	top:18%;
	left:10%;
}





section:nth-of-type(4){
	background-color: var(--background-party-outfit-kopen);
	padding: 2% 5% 2% 5%;
}

section:nth-of-type(4) h2{
	font-size: 2em;
	margin:0;
	display:block;
}

section:nth-of-type(4) ul{
	display:flex;
	flex-direction: row;
	flex-wrap: wrap;

	position: relative;
	gap: 0.5em;

	padding: 0 0 0 6%;
}


section:nth-of-type(4) button {
	display:flex;
	background-color:var(--background-party-outfit-kopen);	
	text-decoration: underline;

	margin: 2em 6em 2em 12em;
}
