/* page */
html {
	font-size: 62.5%;
	font-family: sans-serif;
}

body {
	font-size: 1.6rem;
	margin: 0;
	background-color: oklch(0.8794 0.0592 254.12);
}

*, *::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;
}

.hidden {
	display: none;
}

.debug {
	visibility: hidden;
}

.mainbedanktpagina {
	height: 100vh; 
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 2.5rem;


	.bedanktpagina {
    	display: flex;
    	flex-direction: column;
    	justify-content: center;
    	align-items: center;
    	text-align: center;
		
		a {
			display: inline-block;
    		padding: 0.5rem 1rem;
    		background-color: oklch(0.3398 0.0592 254.12);
    		color: oklch(1 0 0);
    		text-decoration: none;
    		border-radius: 0.25rem;
		}
			
		a:hover {
			background-color: oklch(0.6513 0.1307 235.06);
		} 
	}
}

.mainberichtenpagina {
	height: 100vh; 
	display: flex;
	flex-direction: column;
	
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 0;
    padding: 2rem;
    justify-content: flex-start;
    align-items: stretch;

.card {
    display: flex;
    flex-direction: column;
    background-color: oklch(0.3398 0.0592 254.12);
    color: oklch(1 0 0);
    border-radius: 1rem;
    padding: 1.5rem;
    flex: 1 1 33.34%;
    max-width: 33.34%;
    box-shadow: 0 0 0.2rem oklch(0 0 0 / 0.2), 0 0 2rem oklch(0 0 0 / 0.1);
    box-sizing: border-box;
    ul {
        list-style: none;
        }
    }
}
