:root{
	--orange: #ff8c32;
	--orange-lighter: #ff9d50;
	--light-text: #bfc2cc;
	--white: white;
	--bg_color: #0e0f13;
	--card_bg: rgba(255, 255, 255, 0.05);
	--card_border: rgba(255, 255, 255, 0.1);
	--footer_divider: rgba(255, 255, 255, 0.1);
	--card_blue_bg: #141622;
}

.success_message {
	color: var(--orange);
	margin-top: 15px;
}

.error_message {
	color: #c62828;
	margin-top: 15px;
	padding-left: 20px;
}

/* CSS Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
}

body {
	height: auto;
	font-family: open-sans, sans-serif;
	background-color: white;
	line-height: 1.2;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #0e0f13;
}

main{
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	min-height: 60dvh;
}

a,button {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

ul {
	list-style: none;
}

li{
	color: white;
}

button {
	background: none;
	border: none;
	cursor: pointer;
	outline: none;
	color: inherit;
}

input {
	outline: none;
	color: inherit;
	font-family: inherit;
}

input[type="checkbox"] {
	cursor: pointer;
}

/* Algemeen */

h1{
	font-family: "Outfit", sans-serif;
	font-size: 50px;
}

h2{
	font-size: 35px;
	font-family: "Outfit", sans-serif;
}

h3{
	font-size: 25px;
	font-family: "Outfit", sans-serif;
}

p{
	font-size: 17px;
	color: white !important;
}

@media screen and (max-width: 700px){
	h1{
		font-family: "Outfit", sans-serif;
		font-size: 35px;
	}
	
	h2{
		font-size: 25px;
		font-family: "Outfit", sans-serif;
	}
	
	h3{
		font-size: 17px;
		font-family: "Outfit", sans-serif;
	}
	
	p{
		font-size: 15px;
	}
}

@media screen and (max-width: 525px){
	h1{
		font-family: "Outfit", sans-serif;
		font-size: 25px;
	}
	
	h2{
		font-size: 17px;
		font-family: "Outfit", sans-serif;
	}
	
	h3{
		font-size: 15px;
		font-family: "Outfit", sans-serif;
	}
	
	p{
		font-size: 12px;
	}
}