/* Table of Contents
  - General Style
  - Box class
  - Tooltip/Hover Popout Code
*/

/*-------- General Style --------*/


body {
  background-color: white;
  color: black;
  font-family: Garamond;
  font-size: 200%;
  text-align: center;
  margin: auto;
  width: 90%
}

/*-------- Box Class --------*/

.box {
  text-align: left;
  border: 3px solid black;
  margin: auto;
  width: 90%;
}

/*-------- Fixed-Box Class --------*/

.fixed-box {
  text-align: left;
  border: 3px solid black;
  position: fixed;
  width: 400px;
}

/*-------- Tooltip/Hover Popout Code --------*/

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 500px;
  background-color: CadetBlue;
  color: Azure;
  text-align: center;
  border-radius: 6px;
  padding: 5px 6px;
 
  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 114%;
  left: 50%;
  margin-left: -250px;
}
/* Bottom arrow on tooltip box */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: CadetBlue transparent transparent transparent;
}

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