@import url('https://fonts.googleapis.com/css2?family=Honk&display=swap');
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

body {
  background-color: #212529; /* Dark background */
  font-family: "VT323";
  color: #00c939;
  margin-left: 5%;
  margin-right: 5%;
}

.title {
  font-family: "Honk";
}

#messageList {
  background-color: #8a8a8a; /* Dark gray background */
  padding: 20px;
  border: 1px solid #00c939;
  border-radius: 10px;
  max-width: 500px;
  margin: 40px auto;
  color: #00c939; /* White text color */
}

#messageList p {
  margin-bottom: 10px;
  font-family: "VT323";
}

#message-input {
  background-color: #8a8a8a; /* Dark gray background */
  border: 1px solid #00c939;
  padding: 10px;
  border-radius: 10px;
  width: 75%;
  font-family: "VT323";
  color: #00c939; /* White text color */
}

#send-button {
  background-color: #00b533; /* Blue button */
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-family: "VT323";
  color: #fff; /* White text color */
  cursor: pointer;
}

#send-button:hover {
  background-color: #007d23; /* Darker blue on hover */
}
