* {
  font-family: Arial;
  color: #f4f4f4;
  border-radius: 4px;
  box-sizing: border-box;
}
body {
  background-color: #272525;
  max-width: 700px;
  margin: 35px auto;
}
::selection {
  background: #f5c478;
}
label {
  display: block;
  margin: 5px 0;
}
div {
  padding: 10px 0;
}
input, select, button {
  background-color: #3e3e3e;
  border: none;
  padding: 10px;
}
textarea {
  background-color: #3e3e3e;
  border: none;
  width: 100%;
  height: 200px;
  padding: 10px;
}
#password {
  width: 100%;
}
#error {
  color: #e66060;
}
#github {
  text-align: right;
  font-style: italic;
}
#output-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
button {
  cursor: pointer;
}
#copyOutput {
  visibility: hidden;
}