html, body {
	margin: 0;
	padding: 0;
	height: 100%;
}

body {
    /* The image used */
    background-image: url("img_parallax_web.jpg");
	
    height: 100%;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
	/* bei manchen mobile devices funktioniert Parallax nicht korrekt und zoomt ins Bild. hierbei vl eher : scroll zum deaktivieren */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media only screen and (max-width: 600px) { body {background-image: url('img_parallax_mobile.jpg') } }

.grid {
    width: 100%;
    height: auto;
    margin: 0px;
    background-color: transparent;
	padding: 0;	
}

h1 {
    /* font-family: sans-serif; */
	font-family: arial,sans-serif;
    background-color: #57636e;
    text-align: center;
    color: #ffffff;
    /* padding: 1vh 0px 0.7%; */
    padding: 1.2vh 0px 1.2vh;
	margin: 0% auto 0% auto;
}

.grid #question, #info, #info2 {
    /* font-family: "monospace"; */
	/* font-family: "Times New Roman", Times, serif; */
	font-family: arial,sans-serif;
    color: #5A6772;
	text-align: center;
	margin: 1% auto 1% auto;
	background-color: white;
}

.grid #question {
    font-size: 28px;
	background-color: rgba(255, 255, 255, 0.8);
	margin-top: 0px;
	/* padding: 0.7%; */
	padding: 1.1vh;
}

.grid #info, #info2 {
    font-size: 20px;
	padding: 20px;
	font-family: sans-serif;
	background-color: rgba(255, 255, 255, 0.85);
}

.grid #info2 {
	color: black;
	margin-top: 50px;
}

.buttons {
    margin-top: 30px;
	/* height: 70vh; */
	text-align: center;
}

.buttons2 {
    margin-top: 30px;
    margin-bottom: 30px;
	text-align: center;
}

#btn0, #btn1, #btn2 {
    background-color: #778897;
	height: 70px;
    width: 70%;
    font-size: 20px;
    color: #fff;
    border: 1px solid #1D3C6A;
    border-radius: 10px;
    margin: 20px 0px 10px 0px;
    /* padding: 15px 0px 15px 0px; */
}


#btn0:hover, #btn1:hover, #btn2:hover {
    cursor: pointer;
    background-color: #57636e;
}
	
#btn0:focus, #btn1:focus, #btn2:focus {
    outline: 0;
}


/* @import url(https://fonts.googleapis.com/css?family=Montserrat:400,700); */

form {width: 420px; max-width:95vw; margin:20px auto;}

#feedback_head {
	background:#778897;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 24px;
	color: white;
	font-family: 'Montserrat', Arial, Helvetica, sans-serif;
	width: 100%;
	border-radius:5px;
	padding-top:10px;
	padding-bottom:10px;
	margin-bottom: 15px;
}

.feedback-input {
  /* color:white; */
  font-family: Helvetica, Arial, sans-serif;
  font-weight:500;
  font-size: 18px;
  border-radius: 5px;
  line-height: 22px;
  /* background-color: white; */
  border:2px solid #778897;
  transition: all 0.3s;
  padding: 13px;
  margin-bottom: 15px;
  width:100%;
  box-sizing: border-box;
  outline:0;
}

.feedback-input:focus { border:2px solid #57636e; }

textarea {
  height: 150px;
  line-height: 150%;
  resize:vertical;
}

[type="submit"] {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  width: 100%;
  background:#778897;
  border-radius:5px;
  border:0;
  cursor:pointer;
  color:white;
  font-size:20px;
  padding-top:10px;
  padding-bottom:10px;
  transition: all 0.3s;
  margin-top:-4px;
  font-weight:700;
}
[type="submit"]:hover { background:#57636e; }

#impressum {
	font-family: Helvetica, Arial, sans-serif;
	background-color: rgba(255, 255, 255, 0.8);
	padding-top: 3px;
}