* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background: #F55E43;
}

h1 {
  font-weight: bold;
  font-size: 95px;
  line-height: 34px;
  color: #6F314A;
  padding-top: 190px;
  text-align: center;
  font-family: 'DynaPuff', cursive;
}

h2 {
  font-weight: bold;
  font-size: 24px;
  line-height: 34px;
  color: #F6C1AE;
  text-align: center;
  margin-bottom: 36px;
  font-family: 'DynaPuff', cursive;
}

.chat-bar-collapse {
  position: fixed;
  bottom: 0;
  right: 2px;

}

#chat-button {
  background: #6F314A;
  max-width: 400px;
}

p {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  margin: 0;
}

input {
  box-sizing: border-box;
  border: none;
  border-radius: 4px 0 0 4px;
  background: #F6C1AE;
  color: #0026ff;
  padding: 16px;
  font-size: 16px;
  font-family: 'Montserrat';
  font-weight: 600;
  line-height: 26px;
  flex: 1;
}


main {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #f1f1f1;
    max-width: 414px;

}


.chat {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  overflow: scroll;
  flex-direction: column;
  padding-bottom: 16px;
  height: 450px;
  padding: 10px;
  
}




.bot-msg {
  display: flex;
  margin: 16px 8px 0 0;
  flex-shrink: 0;
}

.user-msg {
  display: flex;
  justify-content: flex-end;
  margin: 16px 0 0 8px;
  flex-shrink: 0;
}

.bot-msg img,
.user-msg img {
  width: 60px;
  height: 60px;
}

.bubble {
  background: #F9ADA5;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  padding: 16px 24px;
  color: #6F314A;
  max-width: 80%;
}

.bot-bubble {
  border-radius: 0px 26px 26px 26px;
  margin-left: 8px;
}

.user-bubble {
  border-radius: 26px 0 26px 26px;
  margin-right: 8px;
}

.input-wrapper {
  display: flex;
  justify-content: center;
  background: #F9ADA5;
}

.input-wrapper form {
  width: 100%;
  display: flex;
  padding: 10px;
}

button {
  background-color: #6F314A;;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 16px 16px;
  margin-right: 4px;
  font-size: 16px;
  line-height: 26px;
  font-family: 'Montserrat';
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  opacity: 0.9;
  transition: all 0.2s ease;
}

@media (max-width: 668px){
.chat-bar-collapse {
  position: center;
  right: o;
}
h1 {
  font-size: 60px;
  padding-top: 120px;
}
}