.display {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 2em 0;
}

.display p, .display textarea {
  font-family: monospace;
  background-color: white;
  font-size: 1.5em;
  overflow: auto;
  margin: 1em;
  border-radius: 5px;
  flex: 1;
}

#visualize {
  text-align: center;
  padding: 1em;
	height: 100%;
  overflow: scroll;
  max-width: 100%;
}

#input{
  padding: 0.5em;
	min-height: 30vh;
}

button {
  color: #03426a;
  padding: 0.1em 0.5em;
  width: 6em;
  margin: 0;
  background-color: #ffcc33;
  border: none;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1.5em;
  text-align: center;
  transition: all 0.1s ease-out;
  cursor: pointer;
}

button:hover {
  background-color: #fff;
}
