body {
  background-color: grey;
}

.heading {
  display: none;
}

h1 {
  color: navy;
  margin-left: 20px;
}

input[type=text] {
  box-sizing: border-box;
  width: 100%;
  height: 3em;
  margin: 0px;
  padding: 0.5em;
  font-size: 1em;
  font-weight: 300;
  color: rgb(0, 50, 100);
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(128, 152, 177);
  border-radius: 4px;
  appearance: none;
  font-family: "Circular TT", Arial;
}

input[type=submit] {
  box-sizing: border-box;
  display: block;
  height: 3em;
  font-size: 1em;
  font-weight: 700;
  font-family: "Circular TT", Arial;
  color: rgb(0, 50, 100);
  background-color: rgb(255, 164, 69);
  border: 1px solid rgb(255, 164, 69);
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  hyphens: auto;
  cursor: pointer;
}

.title {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: rgb(0, 50, 100);
  word-break: break-word;
}