body {
  background-color: #f2f2f2;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}


  label {
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}

input[type="text"] {
  padding: 12px 20px;
  font-size: 16px;
  border: 1px solid #ccc;
  width: 100%;
  margin-bottom: 20px;
}

button {
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin-top: 20px;
  border: none;
  cursor: pointer;
  width: 100%;
}

button:hover {
  opacity: 0.8;
}

#text-output, #image-output {
  display: none;
  text-align: center;
  margin-top: 20px;
}

#text-output h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

#image-output img {
  width: 100%;
  max-width: 600px;
}

