.charades-generator {
  background-color: #FAF7F0;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

h2 {
  text-align: center;
}

.generator-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.input-section, .output-section {
  flex: 1;
}

#category {
  margin-top: 10px;;
}
.output-box {
  padding: 1rem;
  background: #fff;
  border: 1px solid #ddd;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

button {
  margin-top: 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 4px;
}

button:hover {
  background-color: #45a049;
}

@media (min-width: 601px) {
  .generator-wrapper {
    flex-direction: row;
    gap: 2rem;
  }
}