@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  background-color: #fffff0;
}

.dark-theme {
  background-color: #252525;
  color: white;
}

.wrapper {
  margin: 120px auto;
  max-width: 600px;
  background-color: #575757;
  border-radius: 10px;
  padding: 20px;
}

h1 {
  text-align: center;
  font-family: "Roboto", sans-serif;
  color: white;
}

h3 {
  font-weight: 200;
  font-size: 18px;
  text-align: center;
  margin-top: 30px;
  color: white;
  line-height: 1.4;
}

form {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Styles for the prompt input and generate button */
.prompt {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-right: 10px;
  width: 300px;
}

.btn {
  padding: 10px 20px;
  background-color: #239885;
  color: white;
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  cursor: pointer;
  opacity: 0.8;
}

.theme img {
  height: 30px;
  width: 30px;
  cursor: pointer;
}

.theme img:hover {
  opacity: 0.8;
}

footer {
  text-align: center;
  padding: 10px;
  font-size: 14px;
  color: #888;
}
