* {
  box-sizing: border-box;
  margin: 0;
}

body {
  padding: 50px;
  font-family: 'Noto Sans KR', sans-serif;
}

.chatbot {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.chatbot-box {
  width: 250px;
  padding: 35px;
  border: 1px solid #ffd966;
  border-radius: 10px;
  color: #f5a42b;
  text-align: center;
}

.chatbot-box img {
  visibility: hidden;
  width: 100%;
  border-radius: 10px;
}

.chatbot-image {
  width: 350px;
  padding: 15px;
  margin-bottom: 20px;
}

input,
button {
  padding: 10px;
  border: none;
  border-radius: 10px;
}

input {
  margin-right: 10px;
  background-color: #fff2cc;
}

input::placeholder {
  text-align: center;
  color: #f5a42b;
}

button {
  border-radius: 10px;
  background-color: #ffd966;
  color: #f5a42b;
}
