:root {
  --mouse-x: 50px;
  --mouse-y: 50px;
  --jump-time: 0.5s;
}

html, body {
  /* margin: 0;
  padding: 0; */
  display: flex;
  flex-direction: column;
  margin: 0;
  height: 100vh;
}


.main {
  display: flex;
  justify-content: center;
  align-items: center;
}

.canvas-wrapper {
  width: 1280px;
  height: 960px;
  
  position: relative;
  
  display: flex;
  justify-content: center; 
  align-items: center; 
}


#myCanvas1, #myCanvas2 {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  /* z-index: 1; */
}


.chat1 {
  position: absolute;
  left: 50px;
  bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.text-container1 {
  display: none; 

  padding: 30px 30px;
  background-color: #00E47B; 
  border: 6px solid #000000; 
  border-radius: 15px; 
  font-size: 24px; 
  font-family: Helvetica;
  font-weight: bold; 
  color: #000000; 
  display: inline-block; 
  width: 250px; 
  word-wrap: break-word; 
  margin-bottom: -20px;
}

.chat2 {
  position: absolute;
  right: 50px;
  bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.text-container2 {
  display: none;
  
  padding: 30px 30px;
  background-color: #FF4B56; 
  border: 6px solid #000000; 
  border-radius: 15px; 
  font-size: 24px; 
  font-family: Helvetica;
  font-weight: bold; 
  color: #000000; 
  display: inline-block; 
  width: 250px; 
  word-wrap: break-word; 
  margin-bottom: -20px;
}



.chat-input {
  position: absolute;
  bottom: 30px; 
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

#userInput {
  padding: 10px;
  font-size: 20px; 
  font-family: Helvetica;
  font-weight: bold; 
  border: 6px solid #000000;
  background-color: #FFFFFF;
  border-radius: 15px;
  width: 300px;
  height: 60px;
  margin-bottom: -20px;

}

#submitBtn {
  width: 180px; 
  padding: 10px;
  background-color: #FFD55D;
  color: #000;
  cursor: pointer;
  border: 6px solid #000000; 
  border-radius: 15px; 

  font-size: 24px; 
  font-family: Helvetica;
  font-weight: bold; 
}

#submitBtn:hover {
  background-color: #FFB12B;
}



#userQuestionDisplay {
  max-width: 500px; 
  padding: 10px;
  background-color: #FFD55D;
  color: #000;
  cursor: pointer;
  border: 6px solid #000000; 
  border-radius: 15px; 

  font-size: 24px; 
  font-family: Helvetica;
  font-weight: bold; 

  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);

  z-index: 1000;
}
