:root {
	--color-text: #333;
	--color-text-light: #bbb;
	
	--font-head: 'Roboto', sans-serif;
	--font-body: 'Nunito', sans-serif;
}

body {
	margin: 0;
	padding: 0;
	overflow-wrap: break-word;
	
	color: var(--color-text);
	font-family: var(--font-body);
	font-weight: 400;
	
}

h1 {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 4em;
	
	margin: 0;
}

h2 {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 2em;
}

h3 {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 1.3em;
}

h4 {
	font-family: var(--font-head);
	font-weight: 400;
	font-size: 1em;
}

a {
	color: var(--color-text);
}

a:visited {
	color: var(--color-text);
}

header {
	box-sizing: border-box; /* so that the padding doesn't count towards the width */
	min-height: 100vh;
	width: 100%;
	padding: 40vh 10vw;
	
	background-image: 		linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.6)), url('../graphics/bg.jpg');
	background-size:    	cover;
	background-position:	center center;
	background-attachment:	fixed;
	
	color: #fff;
}

header p {
	font-size: 1.5em;
	
	margin: 0.5em 0em;
}

header a {
	color: #fff;
}

section {
	padding: 1rem 10vw;
}


section.speisekarte div {
	display: grid;
	grid-template-columns: 200px auto auto;
	grid-gap: 1rem;
	padding: 0.5rem 0;
}

section.speisekarte div img {
	width: 100%
}

section.speisekarte div div {
	display: block;
	grid-column: span 2;
}

section.speisekarte div div h3 {
	margin: 0;
}

section.speisekarte div div p {
	margin: 0.2rem 0;
}

section.speisekarte div div p.preis {
	font-weight: 700;
}

@media (max-width: 450px) {
	h1 {
		font-size: 3em;
	}
	
	
	section {
		padding: 1rem 5vw;
	}

	section.speisekarte div {
		display: block;
	}
}

section form {
	margin-top: 1rem;
	display: grid;
	grid-gap: 0.5rem;
}

input[type="text"], input[type="email"], textarea {
	font-size: 1rem;
	
	height: 2.6rem;
	padding: 0.2rem 1rem;
	margin: 0;
	box-sizing: border-box;
	
	border: 0;
	border-bottom: 0.15rem solid #aaa;
	border-radius: 0;
	outline: 0;
	
	background: #eee
	color: #000
		
	transition: all 0.2s ease-in-out;
}

input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
	border-bottom-color: #000;
	caret-color: #000;
}

textarea {
	height: 10rem;
	resize: none;
	padding: 0.5rem 1rem;
}


footer {
	margin: 0 10vw;
	padding: 0.5rem 0;

	color: var(--color-text-light);
	
/* 	border-top: 1px solid #bbb; */
}

footer a {
	color: var(--color-text-light);
}

footer a:visited {
	color: var(--color-text-light);
}