@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
body {
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-top: 60px;
  height: auto;
}
.container {
  width: 70%;
  max-width: 600px;
}
form {
  background-color: white;
  padding: 1.2rem;
  border-radius: 5px;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
small {
  color: #797979bb;
  font-size: 10px;
  position: absolute;
  top: 80%;
  left: 5%;
}
#instruction-input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 20px;
  width: 80%;
  font-size: 12px;
}
#instruction-input:focus {
  outline: none;
  border-color: #88a096;
  box-shadow: 0 0 5px rgba(136, 160, 150, 0.5);
}
#instruction-input::placeholder {
  color: #585757b9;
 font-size: .7rem;
}
#generate-btn {
  padding: 10px;
  background-color: #88a096;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.85rem;
  width: 30%;
  font-weight: 600;
}
#generate-btn:hover {
  background-color: #729188;
  box-shadow: 0 4px 8px rgba(114, 145, 136, 0.2);
}
.response {
  background-color: white;
  padding: 1rem 0.8rem;
  border-radius: 5px;
  width: 100%;
  font-size: 0.85rem;
 display: none;
}
.show{
  display: block;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

footer {
  text-align: center;
  font-size: 0.5rem;
  margin-top: 0;
}
footer a {
  text-decoration: none;
  color: #88a096;
  font-weight: 600;
}
footer a:hover {
  text-decoration: underline;
}
