body {
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  /* Horizontal centering */
  align-items: center;
  /* Vertical centering */
  text-align: center;
  /* Centers inline elements like text */
}

/*.unlock-main {*/
/*  display: flex;*/
/*  flex-direction: row;*/
/*  justify-content: center;*/
/*  align-items: center;*/
/*  width: 100%;*/
/*  height: 100vh*/
/*}*/

.unlock-main {
  position: relative;
  height: 100vh;
}

.textarea {
  width: 80vw;
  height: 60vh;
  font-size: 18px;
  line-height: 1.5;
  border: 2px solid #ccc;
  border-radius: 10px;
  top: 50%;
  font-family: monospace;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  text-align: left;
  white-space: pre-wrap;
  /*overflow-wrap: break-word;*/
  overflow-x: auto;
  overflow-y: auto;
  word-wrap: normal;
  overflow-wrap: normal;
  white-space: pre;


  /* Allows users to adjust height if needed */
}

textarea {
  background: transparent;
  color: transparent;
  caret-color: black;
  z-index: 2;
  resize: none;
}

#display {
  pointer-events: none;
  color: black;
  z-index: 1;
}

.buttons {
  position: absolute;
  top: 83%;
  transform: translate(-50%, -50%);
}

#copy-valids {
  transform: translate(-128%, -50%);
  white-space: nowrap;
  background-color: green;
}

#copy-invalids {
  transform: translate(18%, -50%);
  white-space: nowrap;
  background-color: red;
}

#disclaimer {
  position: absolute;
  top: 92.5vh;
  transform: translate(-50%, -50%);
  width: 80vw;
  white-space: nowrap;
}
