body {
  background-color: #feffef;
  color: #000000;
  transition: all 0.5s;
}
.logo {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
  max-width: 200px;
  margin-bottom: 20px;
  transition: all 0.5s;
}
.chat-container {
  width: 400px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ccc;
  background-color: #feffef;
  color: #000000;
  width: 97%;
  overflow-x: auto;
  transition: all 0.5s;
}
.chat-box {
  box-sizing: border-box;
  height: 300px;
  border: 1px solid #ccc;
  overflow-y: auto;
  margin-bottom: 10px;
  font-family: Lexend Deca LightLexend, Deca SemiBold, arial, monospace, sans-serif;
  background-color: #feffef;
  color: #000000;
  width: 97%;
  overflow-x: auto;
  transition: all 0.5s;
}
.chat-box .message {
  padding: 10px;
  margin-bottom: 5px;
  background-color: #e1e1e1;
  border-radius: 5px;
  overflow-wrap: break-word;
  color: #6a0509;
  font-family: 'Arial', sans-serif;
  transition: all 0.5s;
}
.input-bar {
  box-sizing: border-box;
  height: auto;
  display: flex;
  flex-direction: row;
  background-color: #e1e1e1;
  width: 100%;
  overflow-x: auto;
  transition: all 0.5s;
}
.input-box {
  padding: 10px;
  flex-grow: 1;
  background-color: #f2f2f2;
  color: #000000;
  transition: all 0.5s;
}
.submit-btn {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  background-color: #303030;
  color: #e1e1e1;
  transition: all 0.5s;
}
.name {
  color: #789922;
  transition: all 0.5s;
}
.footer {
  text-align: center;
  margin-top: 20px;
  background-color: #feffef;
  color: #000000;
  transition: all 0.5s;
}

.change-theme-btn {
  background-color: #424242;
  color: #feffef;
  padding: 10px;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  position: absolute;
  top: 50px;
  right: 40px;
  transition: all 0.5s;
}

.goofy-about-btn {
  background-color: #4CAF50;
  color: #ffffff;
  padding: 10px;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  position: absolute;
  top: 50px;
  right: 155px;
  transition: all 0.5s;
}



/* 
* DARKTHEME toggle
*/
.dark-theme {
  background-color: #1d1f21;
  color: #DDDDE3;
  transition: all 0.5s;
}
.dark-theme .chat-container {
  background-color: #1d1f21;
  border-color: #2c2f31;
  transition: all 0.5s;
}
.dark-theme .chat-box {
  background-color: #1d1f21;
  border-color: #2c2f31;
  color: #ffffff;
  transition: all 0.5s;
}
.dark-theme .chat-box .message {
  background-color: #1d1f21;
  color: #f3f3f3;
  transition: all 0.5s;
}
.dark-theme .message .name {
  color: #789922;
  font-weight: bold;
}
.dark-theme .input-bar {
  background-color: #1d1f21;
  transition: all 0.5s;
}
.dark-theme .input-box {
  background-color: #1d1f21;
  color: #ffffff;
  transition: all 0.5s;
}
.dark-theme .submit-btn {
  background-color: #1d1f21;
  color: #ffffff;
  transition: all 0.5s;
}
.dark-theme .footer {
  background-color: #1d1f21;
  color: #5E5A5A;
  transition: all 0.5s;
}