body {
	background-image: white;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

#content {
 width: 75%; 
 margin: auto;
}

.bubble {
  max-width: 45%;
  margin: 1%;
  padding: 15px 20px;
  clear: both;
}

.chat-left {
	background-color: lightblue;
  float: left;
  border-radius: 15px 15px 15px 0px;
}

.chat-right {
	background-color: lightpink;
	float: right;
  border-radius: 15px 15px 0px 15px ;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-content: center;
  gap: 20px;
  font-family: system-ui, sans-serif;
  font-size: 1.25rem;
}

.image {
 max-width: 95% 
}