body {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  background: linear-gradient(to right, #3498db, #2ecc71, #e74c3c); /* Change these colors as needed */
  color: #fff;
  font-family: 'Raleway', sans-serif;
  transition: background 0.5s ease; /* Add transition for smooth color change */
  position: relative; /* Add relative positioning to the body */
}

.container {
  text-align: center;
  position: relative; /* Add relative positioning to the container */
}

.title {
  font-size: 2em;
  margin-bottom: 20px;
}

.artwork {
  width: 300px;
  height: 300px;
  background-color: #666;
  border: 2px solid #fff;
  margin: 20px auto;
}

.generate-button {
  padding: 10px 20px;
  font-size: 1em;
  cursor: pointer;
  background-color: #3498db;
  color: #fff;
  border: none;
  border-radius: 5px;
  outline: none;
  transition: background-color 0.3s ease;
}

.generate-button:hover {
  background-color: #2980b9;
}