body {
  background-color: #222;
}

#header {
  position: fixed;

  left: 0px;

  top: 0px;

  width: 100%;

  transition: all 0.5s ease-out;
}

.container {
  padding: 2em;
}

.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s;
}

input[type="text"] {
  width: 80%;
  min-width: 150px;
  margin-right: 5%;
  padding-bottom: 1em;
  padding-top: 1em;
  padding-left: 0.4em;
  margin-bottom: 0.2em;
  font-size: 1em;
  text-decoration: none;
}

input[type="password"] {
  width: 80%;
  min-width: 150px;
  margin-right: 5%;
  padding-bottom: 1em;
  padding-top: 1em;
  padding-left: 0.4em;
  margin-bottom: 0.2em;
  font-size: 1em;
  text-decoration: none;
}

.txt {
  width: 80%;
  min-width: 150px;
  margin-bottom: 0.8em;
  margin-top: 1em;
  font-size: 1em;
  text-decoration: none;
}

.txt1 {
  width: 80%;
  min-width: 150px;
  margin-top: 1em;
  font-size: 1em;
  text-decoration: none;
}

.buton {
  width: 80%;
  min-width: 120px;
  cursor: pointer;
  padding: 1em;
  margin-top: 2em;
  margin-right: 4%;
  font-size: 1.1em;
  color: rgb(50, 50, 50);
  text-decoration: none;
  text-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  background-color: #999;
  border-style: none;
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.buton a {
  background-color: rgb(50, 50, 50);
}

.modal {
  display: block;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 80px;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding-top: 2em;
  padding-left: 2em;
  background-color: #fefefe;
}

.modal-content {
  background-color: rgb(100, 100, 100);
  background-color: rgba(100, 100, 100, 0.4);
  margin: 5% auto 15% auto;
  width: 850px;
  min-width: 200px;
}

.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s;
}

@-webkit-keyframes animatezoom {
  from {
    -webkit-transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
  }
}

@keyframes animatezoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
