body {
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f0f0f0;
}

h1 {
  margin-top: 2rem;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  max-width: 800px;
  margin-top: 2rem;
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#prompt {
  width: 100%;
  height: 150px;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  resize: vertical;
}

#generate {
  padding: 0.8rem 1.5rem;
  border: none;
  background-color: #4CAF50;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s;
}

#generate:hover {
  background-color: #45a049;
}

#result-container {
  margin-top: 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

#result-image {
  max-width: 100%;
  max-height: 512px;
  border: 1px solid #ddd;
  border-radius: 4px;
}
