html,body {
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

body{
	font-family: verdana;
	background-image: url("background/FractalArt.jpg");
	background-attachment: fixed;
	background-position: center top;
	color: white
}

#page{
	max-width: 720px;
	margin: auto;
}

h1 {
	font-size: 150%;
	font-style: italic;
	font-weight: normal;
	color: white;
	margin: 0;
}

h3 {
	font-size:75%;
	font-style: italic;
	font-weight: normal;
	color: white;
}

p {
	line-height: 150%;
}

#topbanner h1{
	font-size: 250%;
	display: inline-block;
}

.knop {
	background-color: rgba(0, 200 ,200 ,255);
	padding: 10px;
	display: inline-block;
	text-decoration: none;
	color: white;
}

.pressed {
	background-color: rgba(0, 180 ,180 ,255);
}

.knop:hover{
	background-color: rgba(0, 220 ,220 ,255);
}

.pressed:hover{
	background-color: rgba(0, 180, 180, 255);
}

#content{
	backdrop-filter: blur(16px) brightness(30%);
	width: 100%
	display: inline-block;
	vertical-align: top;
}

/*Styling to keep video iframes 16:9*/
.wideDiv {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.adapterDiv {
	position:absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding:0;
	margin:0;
}
.wideDiv iframe {
	border:none;
	width: 100%;
	height: 100%;
	overflow: hidden;
	overflow-x: hidden;
}

.wideDiv img {
	width: 100%;
	height: 100%;
}

.leftDiv{
	width: 45%;
	display: inline-block;
}

.rightDiv{
	width: 45%;
	display: inline-block;
	vertical-align: top;
}

.foodPost .rightDiv{
	margin: 10px;
}

.foodPost img{
	width: 100%;
}

input[type=submit]{
	background-color: rgba(255, 80 ,150 ,50);
	text-decoration: none;
	color: white;
	border: none;
	
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	box-sizing: border-box;
}

input[type=submit]:hover{
	background-color: rgba(235, 60, 130, 255);
}

input[type=text] {
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	box-sizing: border-box;
}

textarea {
	width: 100%;
}

/*container around the custom radio buttons*/
.radioContainer {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12 px;
	cursor: pointer;
	font-size: auto;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/*hide the browser's default radio button */
.radioContainer input {
	position: absolute;
	opacity: 0; /* makes it invisible */
	cursor: pointer;
}

/* create a custom radio button */
.checkmarkRadioButton {
	position: absolute;
	top: 0;
	left: 0;
	height: 15px;
	width: 15px;
	background-color: rgb(220, 220, 220);
	border-radius: 50%;
}

/*hovering on checkmark */
.radioContainer:hover input ~ .checkmarkRadioButton {
	background-color: rgb(190, 190, 190);
}


/* when radio button is checked --> pnk background color */
.radioContainer input:checked ~ .checkmarkRadioButton {
	background-color: rgb(201, 2, 164);
}

/*creating the indicator (the white dot, hidden when not checked) */
.checkmarkRadioButton:after {
	content: "";
	position: absolute;
	display: none; 
}

/* show indicator (dot) when checked */
.radioContainer input:checked ~ 
.checkmarkRadioButton:after {
	display: block;
}

/*style the indicator (dot) */
.radioContainer .checkmarkRadioButton:after {
	top: 5px;
	left: 5px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: white;
}

.menuIcon {
	display: none;
	cursor: pointer;
	position: absolute;
	right: 10px;
}

.bar1, .bar2, .bar3 {
	width: 35px;
	height: 5px;
	background-color: #fff;
	margin: 6px 0;
	transition: 0.4s;
}

.change .bar1 {
	-webkit-transform: rotate(-45deg) translate(-9px, 6px);
	transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2 {opacity: 0;}

.change .bar3 {
	-webkit-transform: rotate(45deg) translate(-8px, -8px);
	transform: rotate(45deg) translate(-8px, -8px);
}
//}
/* fit background to height */
@media screen and (max-aspect-ratio: 16/9){
	body{
		background-size: auto 100%;
	}
}

/* fit background to weight */
@media screen and (min-aspect-ratio: 16/9) {
	body{
		background-size: 100% auto;
	}
}

/* narrow screen has menu on top and hidden */
@media screen and (max-aspect-ratio: 3/4){
	#menu {
		width: 100%;
	}
	
	.menuIcon {
		display: inline-block;
	}
	
	#content{
		width: 100%;
	}
	
	#menu {
		overflow: hidden;
	}
	
	.hide {
		height: 0
	}
}

/* Probably touchscreen device*/
@media screen and (pointer: coarse){
	body{
		font-size: 15px;
	}
	
	#menu .knop{
		height: 1cm;
		font-size: 0.5cm;
	}
}