@import url('https://fonts.googleapis.com/css?family=Verdana');
/*the background*/
body {
  font-family: Verdana;
  margin: auto;
  background-color: White;
  color: DimGray;
  text-align: left;
  font-size: large;
}

/*the title*/
h2 {
  color: dimgray;
  text-align: center;
  margin: 20px auto;
}

/*text box*/
#output {
	width: 75%;
	margin: auto;
}

#reload {
	width: 75%;
	margin: 30px auto;
}

#about {
  width: 75%;
  font-size: small;
  margin: auto;
}

button {
  background-color: darkred; /* Green */
  border-radius: 10px;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: auto;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
}

button:hover {
  background-color: dimgray; /* Green */
  color: white;

}

