body {
  height: 100%;
  background: -webkit-linear-gradient( to left top,rgb(44, 76, 255), rgb(46, 175, 78));
  background: -moz-linear-gradient( to left top,rgb(44, 76, 255), rgb(46, 175, 78));
  background: -ms-linear-gradient( to left top,rgb(44, 76, 255), rgb(46, 175, 78));
  background: -o-linear-gradient( to left top,rgb(44, 76, 255), rgb(46, 175, 78));
  background: linear-gradient( to left top,rgb(44, 76, 255), rgb(46, 175, 78));
  font-family: 'PT Sans Narrow', sans-serif;
}

div.master {
  position:relative;
  height: 100%;
  width:100%;
}

div.header {
  margin-top: 5%;
}

div.bubble {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 3%;
}

div.myDude {
  position: relative;
  display: flex;
  justify-content: center;
}

div.footer {
  margin-bottom: 20%;
}

div.speech {
  position: relative;
  padding-left: 5%;
  padding-right: 5%;
  text-align: center;
  line-height: 100px;
  background-color: #fff;
  border: 3px solid rgb(0, 0, 0);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  -webkit-box-shadow: 2px 2px 4px #202020;
  -moz-box-shadow: 2px 2px 4px #202020;
  box-shadow: 2px 2px 4px #202020;
  margin: 0 auto;
} 

div.speech:before {
  content: ' ';
  position: absolute;
  width: 0;
  height: 0;
  right: 30px;
  bottom: -38px;
  border: 19px solid;
  border-color: rgb(0, 0, 0) transparent transparent rgb(0, 0, 0);
}

div.speech:after {
  content: ' ';
  position: absolute;
  width: 0;
  height: 0;
  right: 21px;
  bottom: -33px;
  border: 22px solid;
  border-color: #fff transparent transparent #fff;
}

