@import url('https://fonts.googleapis.com/css2?family=Fira+Code&family=Orbitron:wght@700&display=swap');

* {
  box-sizing: border-box;
}

body {
    background: #0a0a0a;
    color: #f2f2f2;
    font-family: 'Fira Code', monospace;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

main {
    width: 100%;
    max-width: 700px;
    text-align: center;
    background: #181818;
    border: 2px solid #ff0000;
    border-radius: 10px;
    padding: 2rem;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #ff0000;
}

textarea {
    width: 100%;
    height: 220px;
    background-color: #222;
    border: 20x solid #ff0000;
    border-radius: 10px;
    color: #eee;
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    transition: border-color 0.3s ease;
}

textarea:focus {
  outline: none;
  border-color: #ff5555;
}

button {
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    background: transparent;
    color: #ff0000;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background: #ff0000;
    color: #121212;
}

pre#output {
    margin-top: 2rem;
    background: #111;
    border: 2px solid #ff0000;
    border-radius: 8px;
    padding: 1.5rem;
    font-family: 'Fira Code', monospace;
    font-size: 1.1rem;
    min-height: 100px;
    white-space: pre-wrap;
    color: #ff5555;
}

textarea#output {
  margin-top: 2rem;
  width: 100%;
  min-height: 100px;
  background: #111;
  border: 2px solid #ff0000;
  border-radius: 8px;
  padding: 1.5rem;
  font-family: 'Fira Code', monospace;
  font-size: 1.1rem;
  color: #ff5555;
  resize: vertical;
  outline: none;
}