/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Times New Roman;
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 0;
  margin-top: 10;
}

footer {
    font-weight: lighter;
    font-size: 15pt;
    border: 2px;
    border-color:black;
    text-indent: 5px;
    border-style: solid none none none;
    margin-bottom: 2px;
}

p {
    text-indent: 40px;
    margin-bottom: 0;
    margin-top: 0;
    line-height: 1.8;
}

linebreak {
    color: white;
}

h1 {
    border: 2px;
    border-color: black;
    border-style: none none solid none;
    margin-bottom: 0px;
}

h2 {
    margin-top: 0px;
    font-weight: lighter;
    font-size: 15pt;
    border: 2px;
    border-color: black;
    border-style: none none solid none;
}

t {
    margin-top: 10px;
    margin-bottom: 0;
}

ul {
    line-height: 1.8;
    margin-bottom: 10;
    margin-top: 0;
}

img {
    border: 5px;
    border-color: black;
    border-style: solid;
}
updates {
    font-size: 13pt;
    text-indent: 25px;
}

/* artifcats from old website staying here just in case */
a:link {
  color: green;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: green;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}
.tooltip {
      position: relative;
      display: inline-block;
}
.tooltip .tooltiptext {
      visibility: hidden;
      width: 200px;
      background-color: black;
      color: #fff;
      text-align: center;
      border-radius: 5px;
      padding: 5px;
      position: absolute;
      z-index: 1;
      bottom: 125%; /* Position above the link */
      left: 50%;
      margin-left: -100px;
      opacity: 0;
      transition: opacity 0.3s;
}
.tooltip .tooltiptext::after {
      content: '';
      position: absolute;
      top: 100%; /* Arrow will be at the bottom */
      left: 50%;
      margin-left: -5px;
      border-width: 5px;
      border-style: solid;
      border-color: black transparent transparent transparent;
}
.tooltip:hover .tooltiptext {
      visibility: visible;
      opacity: 1;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}