body {
    margin: 0 auto; 
    background-image: url("images/background.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

a {
    color:#fff;
    font-weight: bolder;
}
a:visited {
    color:#fff;
}

a.zwei {
    width:auto;
    height: 30px;
    padding-top: 6px;
    padding-right: 5px;
    padding-left: 5px;
    font-size:17px;
    background-color:#000;
    text-decoration: none;
    color:#fff;
    border:#fff solid 1px;
    border-radius: 10px;
    display: inline-block;
}

a.zwei:hover {
    background-color:#fff;
    color:#000;
}

.container {
    width:500px; 
    height: auto; 
    margin:130px auto; 
    padding-top:50px;
    padding-bottom:15px;
    text-align: center;
    background-color: rgba(69, 38, 38, 0.6);
    border-radius:10px;
}

.icon {
    margin-top:-120px;
}

input[type="text"], input[type="password"], input[type="email"] {
    width: 300px;
    height: 50px;
    font-size: 18px;
    margin-bottom: 20px;
    padding-left:5px;
}

.button {
    width:auto;
    height: 38px;
    font-size:17px;
    background-color:#000;
    color:#fff;
    border:#fff solid 1px;
    border-radius: 10px;
}

.button:hover {
    background-color:#fff;
    color:#000;
    cursor: pointer;
}

hr {
  height:12px;
  border-width:0;
  color:gray;
  background-color:gray;
}

.h1 {
  text-align: center;
  font-size: 2em;
  font-weight: bold;   
  text-decoration:underline;
}

.h2 {
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
  background-color: #A9A9A9;
  margin-left: 155px;
  margin-right: 155px;   
} 

.h3 {
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
  background-color: #A9A9A9;
  margin-left: 100px;
  margin-right: 100px;
}

h2a {
  text-align: center;
  animation: textwelle 3s;
  font-size: 1.5em;
  font-weight: bold;
  background-color: #A9A9A9;
}

select {

  /* styling */
  width: 300px;
  background-color: white;
  border:#fff solid 1px;
  display: inline-block;
  line-height: 1.5em;
  padding: 0.5em 3.5em 0.5em 1em;
  font-size: 18px;
  color: gray;
  margin-bottom: 20px;

  /* reset */
  margin: 0;      
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select.classic {
  background-image:
    linear-gradient(45deg, transparent 50%, white 50%),
    linear-gradient(135deg, white 50%, transparent 50%),
    linear-gradient(to right, darkgray, darkgray);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    100% 0;
  background-size:
    5px 5px,
    5px 5px,
    2.5em 2.5em;
  background-repeat: no-repeat;
}

select.classic:hover {
  background-image:
    linear-gradient(45deg, white 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, white 50%),
    linear-gradient(to right, gray, gray);
  background-position:
    calc(100% - 15px) 1em,
    calc(100% - 20px) 1em,
    100% 0;
  background-size:
    5px 5px,
    5px 5px,
    2.5em 2.5em;
  background-repeat: no-repeat;
  border-color: grey;
  outline: 0;
}

@keyframes textwelle {
	0% {
		transform: scale(0.1);
		opacity: 0;
	}
	70% {
		transform: scale(1.25);
		opacity: 1;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.footer {
  position: fixed;
  padding: .6em;
  bottom: 0;
  left: 0;
}
