body {
  text-align: center;
  background-color: teal;
  color: black;
  font-family: "Lucida Console", Verdana;
  margin: 0px;
  width: auto;
  image-rendering: optimizeSpeed;
}

ul {
  list-style-type: none;
  margin: 0;
}

li {
  float: left;
  margin: 0;
  padding: 10px 20px;
}

a {
  color: lemonchiffon;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.page {
  background-color: ivory;
  padding-top: 47px;
  padding-bottom: 20px;
  width: 60%;
  margin: auto;
}

.headerbase {
  background: linear-gradient(#90d6bc 0%, lightseagreen 100%);;
  border-bottom: 6px solid lightsalmon;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  min-height: 40px;
}

.headernav {
  padding-left: 80px;
  height: 40px;
  border-bottom: 1px solid #90d6bc;
}

.headerbottom {
  background: linear-gradient(#109995 0%, teal 100%);
  border-top: 1px solid teal;
  width: 100%;
  height: 80px;
  color: lemonchiffon;
}

.logo {
  position: absolute;
  left: 12px;
  top: 0px;
}

.welcome {
  margin-top: 40px;
}

.holder {
  width: 90%;
  display: table;
  margin: 0px auto;
  border: 1px solid lightgray;
  padding: 5px 10px;
}

.comment {
  color: #506870;
  text-align: center;
  margin: 40px auto;
}

.messagegroup {
  text-align: left;
  height: auto;
  line-height: 24px;
  width: 85%;
  color: black;
  border: 1px solid lightgray;
  margin: 8px auto;
  padding: 10px 60px;
}

.profileimage {
  position: relative;
  left: -50px;
  float: left;
}

.title {
  position: relative;
  left: -40px;
  text-align: left;
  line-height: 44px;
  width: 80%;
  color: #506870;
  padding: 10px 0px;
  clear: left;
}

.message {
  position: relative;
  left: 4px;
  text-align: left;
  line-height: 20px;
  width: 80%;
  color: black;
  padding: 10px 0px;
}

.has-tooltip {
  text-decoration: underline dotted;
  color: #506870;
  position: relative;
}

.has-tooltip .tooltip {
  visibility: hidden;
}

.has-tooltip:hover .tooltip {
  visibility: visible;
}

.tooltip {
  border: 1px dotted #506870;
  color: #506870;
  background-color: lightgray;
  z-index: 1;
  position: absolute;
  top: 100%;
  left: 100%;
  font-size: 0.8rem;
  white-space: nowrap;
  padding: 0px 6px;
}