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


body {
  background: black;
  color: inherit;
}

a {
  color: black;
  text-decoration-color: black;
  text-decoration:none;
  
}
a:hover {
  color: #626262;
}

.button {
  background: white;
  padding: 10px 15px;
  border-radius: 3px;
  border: 1px solid black;
  cursor: pointer;
  text-decoration: none;
  color: black;
  display: inline-block;
  min-width: 150px;
  font-size: 1.1em;
  text-align: center;
}
.button:hover {
  background: black;
  color: #fff;
}
.button.button-outline {
  background: #fff;
  border: 1px solid black;
  color: black;
}
.button.button-outline:hover {
  
  background-color: black;
  color: #fff;
}

footer.container {
  margin-top: 15px;
  text-align: center;
  color: #aaa;
  font-size: 0.775em;
  margin-top: 30px;
  margin-bottom: 30px;
}
  footer a {
    color: #aaa;
    text-decoration: none;
  }
  footer a:hover {
    color: #E1E1E1;
  }


 input:focus {
    border-color: black;
  }