body {
  overflow-y:hidden;
}
.body {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
  background: linear-gradient(30deg, #d85133, #f8b133);
}
.body nav {
  width: 100%;
}
.body .intro {
  display: flex;
  justify-content: center;
  margin-top: 2vmin;
  width: calc(100% - 4vmin);
  height: 30vmin;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}
.body .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 2vmin;
  margin-bottom: 40%;
  max-width: calc(100% - 4vmin);
  /*background-color: rgba(255, 255, 255, 0.2);*/
}
.body .container .audio {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 40%;
  height: 30vmin;
  /*background-color: rgba(0, 255, 255, 0.2);*/
}
.body .container .audio .callBtn {
  width: 20vmin;
  height: 12vmin;
  border: 2px solid white;
  border-radius: 6vmin;
  display: flex;
  justify-content: center;
}
.body .container .audio .callBtn span > svg {
  width: 5vmin;
  fill: white;
}
.body .container .audio .callBtn:focus {
  outline: none;
}
.body .container .audio .msgRecognized {
  width: 50vmin;
  height: 20vmin;
  resize: none;
}
.body .container .audio .msgRecognized.break {
  word-wrap: break-word;
  word-break: break-all;
  height: 80px;
}
.body .container .messageToBot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  width: 15%;
  height: 30vmin;
  /*background-color: rgba(255, 255, 0, 0.2);*/
}
.body .container .messageToBot .sendBtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 12vmin;
  height: 12vmin;
  border: 2px solid white;
  border-radius: 1vmin;
  display: flex;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0);
}
.body .container .messageToBot .sendBtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 12vmin;
  height: 12vmin;
  border: 4px solid white;
  border-radius: 1vmin;
  display: flex;
  justify-content: center;
  /*background-color: rgba(255, 255, 255, 0);*/
  opacity: 0.7;
  transform: 0.1s;
}
.body .container .messageToBot .sendBtn:hover {
  opacity: 1;
  transition: 0.1s;
}
.body .container .messageToBot .sendBtn span {
  color: white;
  font-weight: bold;
}
.body .container .messageToBot .sendBtn span > svg {
  width: 5vmin;
  fill: white;
}
.body .container .messageToBot .sendBtn:focus {
  outline: none;
}
.body .container .bot {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 40%;
  height: 30vmin;
  /*background-color: rgba(255, 0, 255, 0.2);*/
}
.body .container .bot .msgBot {
  width: 50vmin;
  height: 20vmin;
  resize: none;
}
.body .container .bot .msgBot.break {
  word-wrap: break-word;
  word-break: break-all;
  height: 80px;
}
.body .container .bot .botAudioBtn {
  width: 20vmin;
  height: 12vmin;
  border: 2px solid white;
  border-radius: 6vmin;
  background-color: #4997dd;
}
.body .container .bot .botAudioBtn span > svg {
  width: 5vmin;
  fill: white;
}
.body .container .bot .botAudioBtn:focus {
  outline: none;
}
