* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
h1{
  color:white;
  text-align: center;
  margin-top: 5px;
}
body {
  width: 100%;
  height: 100%;
  background-color: #313131;
  background-image: radial-gradient(rgba(255, 255, 255, 0.171) 2px, transparent 0);
  background-size: 30px 30px;
  background-position: -5px -5px;
}
.container {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.chatbox {
  width: 90%;
  height: 600px;
  background-color: rgba(33, 33, 33, 0.7);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
}
.input {
  display: flex;
  display: flex;
  align-items: center;  
  justify-content: space-around;
  gap: 10px;
}
#userInput {

  border-top: 1px solid black;
  border-radius: 5px;
  padding: 10px;
  font-size: 16px;
  width: calc(100% - 80px);
}
#userInput:focus {
  outline: none;
  border: 2px solid rgba(0, 0, 0, 0.651);
}
#sendBtn {
  border: none;
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  width: 80px;
  background-color: rgba(0, 0, 0, 0.651);
  color: white;
  cursor: pointer;
}
.messagestyle{
  background-color: rgba(0, 0, 0, 0.2);
  color: white;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  max-width: 100%;
  justify-self: right;
}
.reply{
  background-color: rgba(0, 0, 0, 0.2);
  color: white;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  max-width: 100%;
  justify-self: left;
}