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

body {
  font-family: 'Roboto', sans-serif;
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 0;
}

h1, h2, h3, .font-orbitron {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.05em;
}

a {
  text-decoration: none;
  color: inherit;
}

button, a.button {
  background: linear-gradient(to right, #ff0000, #cc0000);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px #cc0000;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover, a.button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #ff0000;
}

form textarea {
  width: 100%;
  max-width: 500px;
  height: 150px;
  padding: 1rem;
  border: 2px solid #ff0000;
  background: #111;
  color: white;
  border-radius: 0.5rem;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  resize: vertical;
  margin-bottom: 1rem;
}

form textarea:focus {
  outline: none;
  border-color: #ff4d4d;
  box-shadow: 0 0 10px #ff0000;
}

#output {
  margin-top: 2rem;
}

#loader {
  display: none;
  color: #ff0000;
  font-size: 1.2rem;
  margin-top: 1rem;
  text-align: center;
}
