body {
  height: 100vh;
  background: linear-gradient(to bottom, #d1913c 300px, #ffd194 100%);
}

#sky {
  position: absolute;
  height: 300px;
  width: 100%;
  background: linear-gradient(to bottom, #82addb 0%, #ebb2b1 100%);
}

#content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 150px;
}

#rhino {
  position: relative;
  font-size: 100px;
}

#message {
  margin-left: 120px;
  margin-bottom: 10px;
}

.bubble {
  position: relative;
  font-family: sans-serif;
  line-height: 24px;
  width: 200px;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  color: #000;
}

.bubble-bottom-left:before {
  content: '';
  width: 0px;
  height: 0px;
  position: absolute;
  border-left: 24px solid #fff;
  border-right: 12px solid transparent;
  border-top: 12px solid #fff;
  border-bottom: 20px solid transparent;
  left: 32px;
  bottom: -24px;
}
