body {
  background-color: aliceblue;
}
.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.quote-container {
  background-color: white;
  border: 1px solid black;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
}

h1 {
  color: darkblue;
  font-size: 3em;
  margin-bottom: 20px;
}

.description {
  font-size: 1.2em;
  color: darkslategray;
  margin-bottom: 20px;
}

.quoteForm {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  padding: 10px;
}

.quotetopic-input {
  width: 70%;
  padding: 10px;
  border: 1px solid black;
  border-radius: 5px;
  margin-bottom: 10px;
  text-align: center;
}

.quotetopic-button {
  padding: 5px;
  background-color: #ccc;
  color: black;
  border: 1px solid black;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 10px;
}

a {
  color: purple;
  text-decoration: none;
}

footer {
  margin-top: 10px;
  font-size: 0.9em;
  text-align: center;
}
