@import url("https://fonts.googleapis.com/css?family=Slabo+27px");
* {
  font-family: "Slabo 27px";
}

*:focus {
  outline: 0;
}

body, html {
  margin: 0;
}

body {
  height: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  align-self: flex-start;
  background: #006699;
}

#input {
  height: 30px;
  width: 150px;
  background: transparent;
  border: 3px solid #030;
  font-size: 21px;
  color: #fff;
  text-align: center;
}
::placeholder {
  color: #fff;
  opacity: 0.8;
}

#button {
  margin-top: 20px;
  padding: 2px;
  height: 34px;
  width: 100px;
  font-size: 18px;
  border: 3px solid #fff;
  color: #fff;
  background: transparent;
  transition: all 50ms ease-in;
}

#button:hover {
  transform: scale(1.05);
}

#button:active {
  transform: scale(0.95);
}

#output {
  margin-top: 20px;
  min-width: 350px;
  overflow: hidden;
  text-align: center;
}

.article {
  color:white;
  padding: 2% 20% 1%;
}

a {
  color:yellow;
}