/*
 * General
 * -------------------------------------------------- */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/*
html {
  -webkit-box-shadow: inset 0px 6px 0px 0px #0000ff;
  -moz-box-shadow: inset 0px 6px 0px 0px #0000ff;
  box-shadow: inset 0px 6px 0px 0px #0000ff;
}
*/

body {
  background: url(../Images/background.jpg) repeat-y top #FFF;
  background-attachment: fixed;
}

/* Startseite (Logo-Schriftzug) */

.start-logo {
  width: 90vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  text-align: center;
}
.start-logo img {
  margin: 44vh 0;
  width: 72vw;
}

.cinemascope{
    background-color:  #fff;
}

article {
  width: 80vw;
  margin: 10vh auto 20vh auto;
}

article .banner {
  width: inherit;
  margin: 0;
  padding: 0;
  text-align:center;
  font-family:'GT-Walsheim-Bold';
  font-weight:bold;
  line-height: 1.2em;
  font-size:42px;
  color: black;
}


article .white {
    background: #fff;
    padding: 5vh;
    line-height:4vh;
}


.menu-margin{
    margin-top:40vh;
}

/* Form */

.login-form {
	margin-top: 15px;
}

.login-form input, select {
  margin-bottom: 2.5vh;
	padding: 1.25vh;
	width: calc(50% - 8px);
  font-size: 18px;
  line-height: 24px;
	border: 2px solid #000;
}

input:nth-child(odd) {
  margin-right: calc(1.25vh + 2px);
}

input::-webkit-input-placeholder {
  color: #a9a9a9;
}
input:-moz-placeholder {
  color: #a9a9a9;
}
input::-moz-placeholder {
  color: #a9a9a9;
}
input:-ms-input-placeholder {
  color: #a9a9a9;
}

select {
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  background: #ffffff;
}
select:invalid {
  color: #a9a9a9;
}

.login-form input:focus, select:focus {
	border: 2px solid #0000ff;
}

.login-form input.submit-button {
	width: 100%;
  height: calc(92px + 2.5vh);
  background: #ffffff;
	border: 2px solid #0000ff;
  color: #0000ff;
  cursor: pointer;
}
.login-form input.submit-button:hover {
  background: #0000ff;
	border: 2px solid #0000ff;
  color: #ffffff;
}

@media all and (max-width: 736px) {
  article {
    width: 90vw;
    margin: calc(60px + 5vw) auto 10vw auto;
  }
  .login-form input, select {
    width: 100%;
  }
}

/*window.scroll({
  top: 2500, 
  left: 0, 
  behavior: 'smooth' 
});

// Scroll certain amounts from current position 
window.scrollBy({ 
  top: 100, // could be negative value
  left: 0, 
  behavior: 'smooth' 
});*/

