body{
	font-family: "sinkin_sans"; 
	text-align: center;
	background-color: black;
	color: white;
}

h1 {
	color: white;
	font-family: "sinkin_sans800_black"; 
}

.smallimg{
  max-width: 170px;
  height: auto;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 280px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 80%;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent black transparent transparent;
  opacity: 0;
  transition: opacity 1s;
}



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