/* page */
html {
	font-size: 62.5%;
	font-family: sans-serif;
}

body {
	font-size: 1.6rem;
	margin: 0;
}

*, *::before, *::after {
	box-sizing: border-box;
}

.container {
	margin: 0 auto;
	padding: 0 1rem;
	max-width: 1280px;
}

/* form-fields */
/* zie demo bestanden bij de theorie voor meer CSS ;) */
input:not([type=submit]),
textarea {
	display: block;
	width: 100%;
	max-width: 40rem;
	padding: .75em;
	border: 1px solid #666;
	border-radius: .3rem;
}

label,
input[type=submit] {
	margin-top: 3rem;
}
input[type=submit] {
	padding: .5em 2em;
}
label {
	display: block;
	margin-bottom: .2em;
	font-weight: bold;
}

.message {
	font-size: 1.4rem;
}
.message.error {
	color: #b90e0a;
}
.thank {
	margin-top: 10em;
	border: solid oklch(0% 0 0);
	box-shadow: 0 0 0.2rem oklch(0 0 0), 0 0 2rem oklch(33.289% 0.00004 271.152);
	background-color: oklch(64.738% 0.23837 27.097);
	color: white;
	font-size: 1.8em;
	font-style: bold;
	margin-inline: 20em;
	text-align: center;

}
.debug {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	color: white;
	display: none;
	justify-content: center;
	align-items: center;
}
.message{
	display: flex;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
	gap: 2rem;
        
	li{
		padding: 2rem;
		background-color: red;
		font-size: 1.2em;
		color: white;
		border: solid black ;
		border-radius: .5em;
		box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.2), 0 0 2rem rgba(0, 0, 0, 0.1);
		position: relative;
		display: flex;
		flex-direction: row;        
		align-items: center;
	}
}
