@font-face {
  font-family: "Roboto";
  src: url(/assets/Roboto-VariableFont_wdth\,wght.ttf);
}
@font-face {
  font-family: "Michroma";
  src: url(/assets/Michroma-Regular.ttf);
}
body {
  font-family: "Michroma", "Roboto", sans-serif;
  background-color: #242424;
  color: #67c4fd;
  margin: 0;
  padding: 0;
  font-size: 15px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

main {
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}

header {
  color: #67c4fd;
  padding: 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
header h1 {
  margin: 0;
  font-size: 2rem;
}
header span {
  margin-left: 0.5rem;
  font-size: 1.5rem;
  color: #67c4fd;
}

.chat-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.chat-box {
  background-color: #181818;
  border-radius: 10px;
  width: 75%;
  height: 500px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow-y: scroll;
  scrollbar-color: #67c4fd #181818;
  scrollbar-width: thin;
  border-radius: 25px;
  padding: 20px;
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif;
}

form {
  display: flex;
  width: 75%;
  margin-top: 20px;
}
form input {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 25px 0 0 25px;
  font-size: 1rem;
  background-color: #242424;
  color: #FFFFFF;
}
form input:focus {
  outline: none;
  background-color: rgb(23.25, 23.25, 23.25);
  transform: scale(1.02);
  transition: all 0.1s ease-in-out;
}
form button {
  padding: 10px 20px;
  border: none;
  border-radius: 0 25px 25px 0;
  background-color: #67c4fd;
  color: #181818;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
  z-index: 1;
}
form button:hover {
  background-color: rgb(52.6623376623, 176.461038961, 252.3376623377);
  transform: scale(1.08);
  transition: all 0.1s ease-in-out;
}
form button:active {
  transform: scale(0.95);
  transition: all 0.1s ease-in-out;
}

.user-msg-container {
  display: flex;
  justify-content: flex-end;
}

.user-msg-child {
  padding: 8px 16px;
  margin: 10px;
  background-color: #636363;
  color: #FFFFFF;
  border-radius: 20px 20px 0 20px;
  max-width: 60%;
  min-width: 4%;
  word-break: break-word;
}

.bot-msg-container {
  display: flex;
  justify-content: flex-start;
}

.bot-msg-child {
  padding: 8px 16px;
  margin: 10px;
  background-color: #67c4fd;
  color: #000000;
  border-radius: 20px 20px 20px 0;
  max-width: 60%;
  min-width: 20%;
  word-break: break-word;
}

footer {
  color: #67c4fd;
  display: flex;
  justify-content: space-around;
  padding: 1rem;
  fill: #67c4fd;
}
footer p {
  margin: 0;
  font-size: 0.9rem;
}
footer a {
  text-decoration: none;
}
footer a:hover {
  cursor: pointer;
}/*# sourceMappingURL=styles.css.map */