* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;

}

:root{

}

html {
	font-size: 62, 5%;
}

body {

	min-height: 100vh;
	background: white;
}

h1,h2,h3,h4,h5,h6,a,
p {
	color: rgb(36, 36, 36);
	font-family: "Open Sans", sans-serif;
	font-size: 1.6rem;
}


.header {
	width: 100%;
	background: rgb(255, 255, 255);
	align-items: center;
	font-size: 1.6rem;
	display: flex;
	justify-content: space-between;
	padding: 2rem 20vw;
	position: relative;
}

.header-left {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2.5rem;
}

.header-title {
	font-size: 3rem;
}

.header-figure-img {
	height: 5rem;
	width: auto;
}

.header-right {
	display: flex;
	gap: 0.4rem;
}


.main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4rem;
	padding-top: 10vh;
	padding-bottom: 10vh;
	background: linear-gradient(to right, #dce3dc, #175917)
}

.test {
	color: #c56d50;
	color: #c79c52
}

.widget {
	margin: 0vh 20vw;
	min-height: 30vh;
	background: rgb(255, 255, 255);
	border-radius: 0.5rem;
	padding: 2.5rem;
	box-shadow: 0 3px 50px rgba(0, 0, 0, 0.2);
	
}

.footer {
	height: 10rem;
	display: flex;
	position: relative;
	align-items: center;
	justify-content: space-between;
	padding: 0 20vw;
	background: white;
}


.footer>p {
	font-size: 1.4rem;
	text-align: center;
}

.main-buitentemperatuur-chart {
	max-height: 100%;
	max-width: 100%;
	width: 20%;
	height: 100%;
	overflow: auto;
}


.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}


.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}


.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}


input:checked+.slider {
	background-color: #118024;
}

input:focus+.slider {
	box-shadow: 0 0 1px #118024;
}

input:checked+.slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}


.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}


@media screen and (max-width: 1000px) {
	.header-left {
		flex-direction: column;
	}

	.header {
		flex-direction: column;
		padding: 2.5rem 0vw;
	}

	.main {
		gap: 3rem;
		padding-top: 3rem;
		padding-bottom: 3rem;
	}

	.footer {
		flex-direction: column;
		padding: 2rem;
		height: unset;
		gap: 1rem;
	}

	.widget {
		margin: 0vh 5vw;
	}
}


#celcius
{
	display: flex;
	justify-content: center;
	align-items: bottom;
	margin-top: 2rem;
	font-size: 400%;
}


#TMPborder
{
	margin: 0vh 20vw;
	min-height: 30vh;
	background: rgb(255, 255, 255);
	border-radius: 0.5rem;
	padding: 1rem;
	box-shadow: 0 3px 50px rgba(0, 0, 0, 0.2);
}


.main-huidigetemperatuur-chart {
	max-height: 100%;
	max-width: 100%;
	width: 0;
	height: 100%;
	overflow: auto;
}
