body {
  background-color: lightgray;
  display: flex;
  justify-content: center;
  align-items: start;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
}

#app {
  width: 600px;
  background-color: lightblue;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(13, 13, 13, 0.5);
  border-radius: 10px;
  padding-bottom: 80px; /* Adjust this value as needed */
}

input, button {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(13, 13, 13, 0.5);
  border: 1px solid gray;
  padding: 5px 20px;
  margin: 0 auto;
  height: 30px;
}

label {
  margin-top: 15px;
  text-align: center;
}

.output {
  border: 3px solid gray;
  border-radius: 10px;
  padding: 10px;
  word-wrap: break-word;
  margin-top: 15px;
  width: 50%;
  display: block;
  margin: 0 auto;
  width: 200px;
}

.flex-container {
  display: flex;
  justify-content: center;
  align-items: flex-end; /* Aligns items at the bottom */
  gap: 25px; /* 25px gap between items */
  margin: 25px; /* Margin around the flex container */
  width: 100%;
}

.group {
  display: flex;
  flex-direction: column;
  gap: 10px; /* Adjust this value for vertical spacing within groups */
  margin-bottom: 15px;
}

button {
  cursor: pointer;
  background-color: darkblue;
  color: white;
  height: 35px;
  margin-bottom: 35px;
}

h1 {
  text-align: center;
}

footer {
  background-color: #f8f9fa; /* Light grey color */
  padding: 20px;
  text-align: center;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  border-top: 1px solid #e7e7e7; /* Slightly darker grey for the border */
  height: 10px; /* Height of the footer */
}

footer p {
  margin: 0; /* Remove default paragraph margins */
  color: #6c757d; /* Dark grey color for the text */
}

#word-count {
  text-align: center;
}/*# sourceMappingURL=style.css.map */