:root { --bg: rgb(255, 255, 255); --font: #000000; }

html {
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: normal;
    line-height: 1.4;
    padding-left: 30px;
    padding-top: 10px;
    color: var(--font);
}

.tooltip1 {
    position: relative;
    display: inline-block;
    /* border-bottom: 1px dotted black; */
  }
  
  .tooltip1 .tooltiptext {
    visibility: hidden;
    width: 50px;
    background-color: rgb(255, 166, 49);
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
  
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
  }
  
  .tooltip1:hover .tooltiptext {
    visibility: visible;
  }

  .tooltip2 {
    position: relative;
    display: inline-block;
    /* border-bottom: 1px dotted black; */
  }
  
  .tooltip2 .tooltiptext {
    visibility: hidden;
    width: 50px;
    background-color: rgb(46, 134, 34);
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
  
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
  }
  
  .tooltip2:hover .tooltiptext {
    visibility: visible;
  }

  .tooltip3 {
    position: relative;
    display: inline-block;
    /* border-bottom: 1px dotted black; */
  }
  
  .tooltip3 .tooltiptext {
    visibility: hidden;
    width: 50px;
    background-color: rgb(255, 90, 49);
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
  
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
  }
  
  .tooltip3:hover .tooltiptext {
    visibility: visible;
  }

/* unvisited link */
a:link {
    color: var(--font);
  }
  
  /* visited link */
a:visited {
    color: var(--font);
  }
  
  /* mouse over link */
a:hover {
    color: rgb(0, 0, 0);
    font-style: italic;
  }
  
  /* selected link */
a:active {
    color: var(--font);
  }

  body {
background-color: var(--bg);
}