* {
  box-sizing: border-box;
}

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

h1 {
  font-weight: bold;
  font-size: 50px;
  line-height: 34px;
  color: #fff;
  text-align: center;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  letter-spacing: 3px;
}

/* h2 {
  font-weight: bold;
  font-size: 36px;
  line-height: 34px;
  color: #fff;
  text-align: center;
  margin-bottom: 36px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
} */

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: #e5e9ff;
  color: #AA5656;
  padding: 16px;
  font-size: 16px;
  font-family: 'Montserrat';
  font-weight: 600;
  line-height: 26px;
  flex: 1;
}

main {
  margin: 0 auto;
  width: 100%;
  max-width: 700px;
  height: 600px;
  border-radius: 30px;
  background: #fff;
  padding: 20px 24px;
  padding-top: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

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

.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: #e4e6ee;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  padding: 16px 24px;
  color: #AA5656;
  max-width: 40%;
}

.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;
}

.input-wrapper form {
  width: 100%;
  display: flex;
  align-items: center;
}

label {
  font-size: 16px;
  font-family: 'Montserrat';
  font-weight: 500;
  color: #AA5656;
  margin-right: 20px;
}

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

#colaBtn {
  background-color: #B81D13;
  color: black;
  font-size: 20px;
  font-weight: bold;
}

#fantaBtn {
  background-color: #EFB700;
  color: black;
  font-size: 20px;
  font-weight: bold;
}

#spriteBtn {
  background-color: #008450;
  color: black;
  font-size: 20px;
  font-weight: bold;
}

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

select {
  border: none;
  border-radius: 4px;
  color: #AA5656;
  font-size: 16px;
  font-weight: 600;
  height: 60px;
  font-family: 'Montserrat';
  background: #e5e9ff;
  width: 100%;
  padding: 0 20px;
  cursor: pointer;
  text-align: center;
}

footer {
  color: white;
  font-size: 5px;
  margin: 50px;
  text-align: center;
}

footer a {
  text-decoration: none;
  color: #F1DBBF;
}

footer a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 600px) {
  h1 {
    font-size: 35px;
  }
}