@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500&family=Roboto+Condensed:wght@300;400&display=swap");

/*---------------------------- themed color */
.themed-bg {
  background-color: #7e57c2;
}

/*------------------------------- general styling (h/p/img) */
.uppercase {
  text-transform: uppercase;
}

h1,
h5 {
  padding-top: 1em;
  padding-bottom: 0.5em;
}

h1 {
  font-family: "Roboto+Condensed", sans-serif;
}

h5,
p {
  font-family: "Montserrat", sans-serif;
  margin: 0.3rem;
}

/*----------------------------------- chat area styling */
.greeting {
  margin-top: 40px;
  margin-left: 25px;
}

.greeting h5 {
  margin: 0px;
  padding: 0px;
}

#greetingh {
  border-bottom: 8px solid white;
}

.intro img {
  margin-bottom: 0.2em;
}

.bot-icon {
  background: url("../img/boticons.png");
}

.person-icon {
  background: url("../img/personicons.png");
}

.bot-icon,
.person-icon {
  background-repeat: no-repeat;
  background-size: 30px;
  width: 30px;
  height: 30px;
}

.question,
.lastAnswer,
.choice,
.unselected,
.history {
  display: inline-block;
  padding: 10px;
  border: 1px solid black;
  border-radius: 14px;
  margin-left: 2px;
}

.question,
.lastAnswer {
  border-radius: 0px 14px 14px 14px;
  color: #fafafa;
  background-color: #7e57c2;
}

.choice {
  cursor: pointer;
}

.unselected {
  opacity: 0.4;
}

.history {
  border-radius: 14px 0px 14px 14px;
  color: #fafafa;
  background-color: #555555;
}
/*------------------------------ setting the slideDown effect */

.hidden {
  display: none;
}

/*------------------------------ reset button */

#restoreAll {
  font-family: "Roboto+Condensed", sans-serif;
  font-weight: 300;
  color: #fafafa;
  background-color: #1c1130;
  margin: 12px 5px;
  padding: 4px 8px;
  border-radius: 8px;
}

/*------------------------------------ footer */
.padding {
  padding: 10px;
}

footer h5 {
  display: inline-block;
}

.centering {
  text-align: center;
}
.social-links {
  display: inline-block;
}

.social-links li a i {
  transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
}

.social-links li a i:hover {
  color: #4267b2;
}

.social-links li {
  margin: 0.5rem 0;
}

.social-links li a i {
  font-size: 1.5rem;
  color: #fafafa;
}
