* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #f9f7fe;
  font-family: "Roboto", sans-serif;
}
.container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 3rem auto;
  /* border: 2px solid brown; */
  width: 60%;
}

.search-hint {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: white;
  width: 100%;
  padding: 1rem;
  border-radius: 1rem;
}

.input-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;

  padding: 0.5rem 0.75rem;
  width: 100%;
}

input {
  padding: 0.5rem;
  border-radius: 1rem;
  width: 80%;
  border: 2px solid gray;
  outline: none;
}

button {
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
  transition: all 200ms ease-in-out;
  border: none;
  background-color: #885df1;
  color: white;
}

button:hover {
  cursor: pointer;
  transform: scale(1.1);
}

.search-hint p {
  color: gray;
  font-style: italic;
  font-size: small;
}

.poem-sign {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
  border-left: 0.25rem solid #885df1;
  padding: 0.5rem;
  background-color: white;
  border-radius: 0.25rem;
  width: 100%;
}

.hidden {
  display: none;
}

.show-poem {
  font-family: "Georgia", serif;
  font-size: 0.9rem;
  line-height: 1.7;
  text-align: justify;
  white-space: normal;
  width: 100%;
}

span,
a {
  color: #885df1;
}
