html, body {
  height: auto;
  min-height: 100vh;
  overflow-y: auto;
}

body {
  background-color: black;
  color: lime;
  font-family: monospace;
  font-size: 20px;
  padding: 20px;
}

input, button, textarea {
  background: #111;
  color: lime;
  border: 1px solid lime;
  padding: 10px;
  margin: 10px 0;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

#text .char {
  display: inline-block;
  width: 1ch;
  text-align: center;
  transition: 0.2s;
}

#text {
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
}

#text .word {
  white-space: nowrap;
  display: inline-block;
  margin-right: 0.4ch; /* szóköz helyettesítésre */
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  padding-right: 5px;
}

.form-container {
  max-width: 650px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  body {
    padding: 10px;
    font-size: 18px;
  }

  input, button, textarea {
    font-size: 16px;
    padding: 8px;
  }

  nav a {
    display: block;
    margin: 10px 0;
    font-size: 20px;
  }
}
