/* Reset and base layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #00ffcc;
  font-family: 'Courier New', Courier, monospace;
  padding: 20px;
  font-size: 1rem;
  line-height: 1.5;
  text-shadow: 0 0 2px #00ffcc;
}

/* Headings */
h3 {
  color: #ff0066;
  font-size: 1.4rem;
  margin: 1.2rem 0 0.8rem 0;
  text-shadow: 0 0 4px #ff0066;
}

/* Text box content */
.thetext {
  border: 1px solid #ff0066;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 10px #ff0066;
  font-size: 0.95rem;
}

/* Form styling */
form {
  margin-top: 2rem;
  border: 1px solid #00ffcc;
  padding: 1rem;
  background-color: #111;
  box-shadow: 0 0 10px #00ffcc;
  font-size: 1rem;
}

/* Text input */
input[type="text"] {
  width: 100%;
  margin: 0.5rem 0 1rem 0;
  padding: 0.75rem;
  font-family: inherit;
  font-size: 1rem;
  background-color: #000;
  color: #00ffcc;
  border: 1px solid #00ffcc;
  outline: none;
  box-shadow: inset 0 0 6px #00ffcc;
}

/* Submit button */
input[type="submit"] {
  width: 100%;
  background-color: #ff0066;
  border: none;
  padding: 0.75rem;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 0 10px #ff0066;
  transition: background 0.3s ease;
}

input[type="submit"]:hover {
  background-color: #ff3399;
  box-shadow: 0 0 12px #ff3399;
}

/* Links (if any) */
a {
  color: #00ffcc;
  text-decoration: underline;
}

/* Mobile layout is default, but just in case... */
@media (min-width: 600px) {
  body {
    padding: 30px;
  }

  .thetext,
  form {
    max-width: 500px;
    margin: 0 auto;
  }

  h3 {
    font-size: 1.6rem;
  }
}
