@import url('https://fonts.googleapis.com/css2?family=Fira+Code&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Fira Code', monospace;
  background: linear-gradient(to right, #e0f7fa, #e1f5fe);
  padding: 20px;
  color: #333;
}

.container {
  max-width: 900px;
  margin: auto;
  background: #ffffffee;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #00796b;
}

.label {
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
}

#projectTitle {
  width: 100%;
  padding: 8px;
  font-size: 16px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
  height: 300px;
  font-family: 'Fira Code', monospace;
  font-size: 16px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  resize: vertical;
  background-color: #fefefe;
}

.buttons {
  text-align: center;
  margin: 15px 0;
}

button {
  padding: 10px 20px;
  margin: 5px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  background-color: #00796b;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #004d40;
}

h2 {
  margin-top: 20px;
  color: #333;
}

#output {
  background: #111;
  color: #00ff88;
  padding: 15px;
  min-height: 150px;
  border-radius: 6px;
  overflow-x: auto;
  white-space: pre-wrap;
  font-size: 15px;
}

/* Responsive design */
@media screen and (max-width: 600px) {
  textarea {
    height: 200px;
    font-size: 14px;
  }

  button {
    font-size: 14px;
    padding: 8px 16px;
  }

  #output {
    font-size: 14px;
  }
}
