body {
  padding: 1em;
}

h1 {
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
  margin: 0 0.5em 0.75em 0.5em;
}

.mainContainer {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.codeArea {
  display: flex;
  flex-grow: 1;
  justify-content: center;
}

.codePane {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  height: 100%;
  max-width: 800px;
}

.codeArea .codePane:first-child {
  margin-right: 2em;
}

.codePane span {
  color: #c0c0c0;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.8em;
  margin-bottom: 0.25em;
}

.codePane textarea {
  width: 100%;
  height: 100%;
  background-color: #f8f8f8;
  border: 2px solid #c0c0c0;
  border-radius: 0.5em;
  padding: 0.5em;
  margin-bottom: 0.5em;
}

.buttonBar {
  display: flex;
  justify-content: center;
  padding: 1.5em 0.5em 0.5em 0.5em;
}

.buttonBar button {
  padding: 0.5em 0.75em;
  background-color: black;
  color: white;
  border-radius: 0.75em;
}

.buttonBar button:hover {
  background-color: rgba(0, 0, 0, 0.75);
}

.buttonBar button:active {
  background-color: rgba(0, 0, 0, 0.5);
}