@font-face {
  font-family: legible; /* set name */
  src: url(Atkinson-Hyperlegible-Font-Print-and-Web-2020-0514/Web\ Fonts/WOFF2/Atkinson-Hyperlegible-Regular-102a.woff2); /* url of the font */
  
}
body {
  font-family: legible; /* use font */
  max-width: 11in; margin-left: auto; margin-right: auto; margin-top: 0.25in;
    
}
header {
    font-size: 14pt;
}

a{
    color: black;
}
a:visited{
    color: #8f8f8f;
}

h1 {
  font-size: 24pt;
}
p {
  font-size: 14pt;
}

img.thumb {
    float: left; max-height: 2in; max-width: 3in;
}
/* Tooltip container */
.tipable {
  position: relative;
  display: inline-block;
  /*border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}
.blurb {display: flex; flex-direction: row; flex-wrap: wrap; justify-content: flex-start; align-items: flex-start; gap: 0.25in; padding: 0.125in;}
.blurb p {flex-shrink: 3; max-width: 75%;}
.blurb img {}

/* Tooltip text */
.tipable .tip {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  /*bottom: -125%;*/
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tipable .tip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tipable:hover .tip {
  visibility: visible;
  opacity: 1;
}
