body {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  margin-bottom: 30px
}

p {
  margin: 10px 0 25px 0;
}

.alerttext {
  font-size: 14px;
}

.simpletext {
  margin: 10px 0 40px 0;
}

.title {
  margin: 20px 0 50px 0;
}

h1 {

  font-family: "Helvetica Neue", sans-serif;
  font-size: 120px;
  font-weight: bold;
  letter-spacing: -1px;
  text-align: center;
}


h2 {

  font-family: "Open Sans", sans-serif;
  font-size: 90px;
  font-weight: 300;
  line-height: 32px;
  margin: 0 0 72px;
  text-align: center;
}

h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 32px;
}


form input {
  margin-bottom: 10px;
  animation: shadowhoverreverse 0.5s ease 0s 1 normal forwards;
}

form input:hover {
  animation: shadowhover 1s ease 0s 1 normal forwards;
}

form select {
  margin-bottom: 10px;
  animation: shadowhoverreverse 0.5s ease 0s 1 normal forwards;
}

form select:hover {
  animation: shadowhover 1s ease 0s 1 normal forwards;
}

form #website {
  display: none;
}

form #submit {
  margin-top: 10px;
  background-color: #7c7c7c96;

  color: #fff;
  font-size: 20px;
  text-decoration: none;
  cursor: pointer;

  border-radius: 1px;
  border: 10px;
  border-color: #7c7c7c96;
  border-width: 3px;
  border-style: solid;
}

form #submit:hover {
  box-shadow: 0px 0px 10px #777;
  animation: growth 0.5s ease 0s 1 normal forwards;
}

.image {
  animation: jelly 1.5s ease 0s 1 normal forwards;
  margin: 50px;
}

.ausgabe {
  margin: 20px;
  padding: 20px;
  background-color: #686868;
  color: white;
}

.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

@keyframes growth {
  0% {
    background-color: #7c7c7c;
    transform: scale(1);
  }

  100% {
    background: #007bff;
    transform: scale(1.05);
    border-color: #007bff;
  }
}

@keyframes shadowhover {
  from {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0);
  }

  to {
    box-shadow: 0px 0px 10px rgba(119, 119, 119, 0.4);
  }
}

@keyframes shadowhoverreverse {
  from {
    box-shadow: 0px 0px 10px rgba(119, 119, 119, 0.4);
  }

  to {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0);
  }
}

@keyframes jelly {
  0% {
    opacity: 0;
    transform: rotateX(70deg);
    transform-origin: top;
  }

  100% {
    opacity: 1;
    transform: rotateX(0deg);
    transform-origin: top;
  }
}