body {
  background-color: #d3e4fc;
}

.container {
  font-family: "Inter", sans-serif;
  text-align: center;
  position: relative;
}

a {
  color: #2463eb;
  text-decoration: none;
  transition: all 100ms ease-in-out;
}

a:hover {
  color: #023ebf;
}

h1 {
  margin: 80px auto 30px auto;
  color: #2463eb;
  font-size: 50px;
  font-style: italic;
  font-weight: 900;
}

#title-emphasis {
  font-weight: 800;
  font-style: normal;
}

#search-destination {
  margin: 20px;
  display: flex;
  justify-content: center;
}

#search-input {
  padding: 10px;
  width: 200px;
  border: none;
  border-radius: 20px;
}

#search-button {
  margin-left: 10px;
  padding: 10px;
  border: none;
  border-radius: 20px;
  color: #fff;
  background-color: #3f7bfe;
  transition: all 150ms ease-in-out;
}

#search-button:hover {
  opacity: 0.7;
}

#response-container {
  display: block;
  margin: 0 auto;
  margin-bottom: 100px;
  background-color: #fff;
  width: fit-content;
  max-width: 70%;
  padding: 10px;
  border-radius: 30px;
}

.hide {
  display: none !important;
}

#ai-response {
  font-size: 13px;
  color: rgb(49, 49, 49);
  line-height: 2;
  letter-spacing: 0.3px;
}

footer {
  font-size: 10px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 30px;
  color: rgb(41, 41, 41);
}
