@charset "UTF-8";
/* CSS Document */


body {
  box-sizing: border-box;
  font-size: 62.5%;
  background-color: #000000;
  font-family: "Jost", "Futura", sans-serif;
  overflow-x: hidden;
  align-content: center;
  color: white;	
}

.afterm {
	height: 10vh;
	font-size: 18px;
}

.tooltip {
  position: relative;
  display: inline-block;
  float: center;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 60px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  font-size: 12px;

  /* Position the tooltip */
  position: absolute;
  z-index: 99;
  right: 0%;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}