h1{}
body{
  background-color: #0900BD;
  height: 1000px;
}
p{
  font-weight: bold;
  font-family: "Courier";
	display: inline-block;
	margin: 6%;
}
.bubble {
  max-width: 45%; /*will keep chat bubbles from extending over 45% of the horizontal distance across the screen*/
  margin: 2%;
  padding: 15px 20px;
  clear: both;
}

.chat-left {
  background-color: lightgreen;
  float: left;
  border-radius: 30% 30% 0% 30%;
}

.chat-right {
  background-color: lightblue;
  float: right;
  border-radius: 30% 30% 30% 0%;
}
.image{
  max-width: 95%;
}
.image-chat-left{
  max-width: 95%;
  border-radius: 30% 30% 0% 30%;
}
.image-chat-right{
  max-width: 95%;
  border-radius: 30% 30% 30% 0%;
}