body,
html {
  padding: 0;
  margin: 0;
}
* {
  box-sizing: border-box;
}
.container {
  text-align: center;
  margin-top: 50px;
  padding-bottom: 2rem;
}
#jsonDisplay {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-around;
}
#gridContainer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
#getText {
  margin: 1rem 0;
}
textarea {
  width: 50vw;
  min-height: 10vw;
  overflow: auto;
}
.newLine {
  margin: 0 0; /* Adjust the margin as needed */
  padding: 0 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.cell {
  display: inline-block;
  border: 1px solid #2c012c;
  background-color: #690069;
  margin: 0;
  outline: 0;
  vertical-align: top; /* Add this line */
}

#jsonDisplay {
  margin-top: 20px;
  white-space: pre-wrap;
}
