body {
  margin-top: 15px;
  margin-bottom: 90px;
  font-family: "Open Sans", "Arial", sans-serif;
  color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Lato, "Lucida Grande", Tahoma, Sans-Serif;
  font-weight: 600;
}

.item {
  background-color: rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 15px;
  word-break: break-all;
}

.menu {
  text-align: center;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.1);
  z-index: 9999;
  padding-top: 10px;
}

.btn {
  background-color: rgba(0,0,0,0.1);
  left: 50%;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: 5px;
  margin-right: 5px;
  color: #fff;
  font-family: "Open Sans", "Arial", sans-serif;
  text-decoration: none;
}

.btn:hover {
  background-color: rgba(0,0,0,0.2);
  color: #fff;
}

a {
  color: #fff;
  text-decoration: underline;
}

.bb-tooltip {
 cursor: help;
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted #fff; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.bb-tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
  width: 120px;
  bottom: 100%;
  left: 50%; 
  margin-left: -60px; /* Use half of the width (120/2 = 60), to center the tooltip */
}

/* Show the tooltip text when you mouse over the tooltip container */
.bb-tooltip:hover .tooltiptext {
  visibility: visible;
}