body {
  margin: 0;
  overflow: hidden;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chat-container {
  /* border-radius: 25px; */
  /* background-color: rgba(0, 0, 0, 0.5); */
  position: relative;
}

#chatMessages {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  color: white;
  font-family: 'Comfortaa';
  word-break: break-word;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-weight: 800;
  padding: 15px;
  box-sizing: border-box;
}

#chatMessages::before {
  content: '';
  height: 15px;
  flex-shrink: 0;
}

.message {
  animation: fadeInSlideUp 0.5s forwards;
}

@keyframes fadeInSlideUp {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.emote {
  max-width: 180px;
  max-height: 60px;
  vertical-align: middle;
}

.voice-text {
  color: rgb(44, 145, 44);
  animation: fadeInSlideUp 0.5s forwards;
}

.nick-funClub {
  color: green
}

.nick-red {
  /* text-shadow: -0.5px -0.5px 0 #000, 0.5px -0.5px 0 #000, -0.5px 0.5px 0 #000, 0.5px 0.5px 0 #000; */
  color: red;

  font-weight: 800;
}

.nick-green {
  color: #8ace00;
}

.nick-pink {
  color: rgb(250, 142, 160);
  /* color: pink */
}

.nick-black {
  color: black;
  text-shadow: -0.1px -.1px 0 #000, .1px -.1px 0 #000, -.1px .1px 0 #000, .1px .1px 0 #000;
  -webkit-animation: glow 1s ease-in-out infinite alternate;
  -moz-animation: glow 1s ease-in-out infinite alternate;
  animation: glow 1s ease-in-out infinite alternate;
  font-weight: 800;
}

.nick-boom{
  background: #ee0979;
  background: -webkit-linear-gradient(to right, #ff6a00, #ee0979);
  background: linear-gradient(to right, #ff6a00, #ee0979);
  text-shadow: none;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nick-boom2 {
  color: rgb(255, 69, 0);
}

.nick-peasdos{
  background: -webkit-linear-gradient(90deg,#8f65ec,#6e6cf5,#00b8f8);
  background: linear-gradient(90deg,#8f65ec,#6e6cf5,#00b8f8);
  text-shadow: none;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
  }
  to {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
    /* text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6; */
  }
}

.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out 0.5s;
}

.visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease-in-out;
}
