@charset "UTF-8";
body {
    background-color: #EAEAEA;
    background-size: cover;
    background-attachment: fixed;
    font-family: Times New Roman, serif;
    font-style: normal;
    font-weight: 400;
    border-radius: 0px;
    margin-right: 5%;
    margin-left: 5%;
    margin-top: 5%;
    margin-bottom: 5%;
    color: ;
    -webkit-box-shadow: inset 0px 0px #171717;
    box-shadow: inset 0px 0px #171717;
}
body aside h1 {
    f-size: 3em;
    text-align: left;
        font-family: "Palatino", serif;
    color: #606060; /* deep dark red */

}
body footer {
    font-size: small;
    font-weight: bold;
    text-align: left;
}
nav  {
}
.navlist {
    margin: 0;
    padding: 0;
    list-style-type: none;
    overflow: hidden;
}
.navlistitem {
    float: left;
}
.navlistitem a  {
    text-decoration: none;
    display: block;
    padding-right: 16px;
    padding-left: 16px;
    color: #171717;
    font-weight: bold;
}
.navlistitem a:hover   {
    color: #FFFFFF;
    background-color: #171717;
}
a:link { color: #000000; text-decoration: none; }
a:visited {color: #000000; text-decoration: none; }
a:hover {color: #4682B4; }
a:active {color: #000000; text-decoration: none; }

.small-caps-header {
  font-family: "Palatino", serif;
  color: #606060;
}
/* Make any element with data-tooltip show a tooltip on hover */
[data-tooltip] {
  position: relative;
  cursor: help;
  /* Optional underline to indicate hoverable hint */
  border-bottom: 1px dotted #666;
}

/* Tooltip text using ::before pseudo‐element */
[data-tooltip]::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 0.85em;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out;
  z-index: 10;
}

/* Tooltip arrow using ::after */
[data-tooltip]::after {
  content: "";
  position: absolute;
  bottom: 115%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out;
  z-index: 10;
}

/* Show tooltip on hover */
[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
  opacity: 1;
  visibility: visible;
}

.medium-header {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 18px;
  color: black;
  font-weight: bold;
  text-align: left;
  margin-bottom: 5px;
}

html {
  font-size: 100%; /* or 62.5% for 10px base */
}
body {
  font-size: 1rem;
}
.small-caps-header-2 {
  font-family: "Palatino", serif;
  font-size: 1.5rem; /* scalable */
  color: #606060;
  text-align: left;
  margin-bottom: 1.25rem; /* rem-based margin scaling too */
}

@media (orientation: landscape) {
  .small-caps-header-2 {
    font-size: clamp(1.75rem, 6vw, 1.75rem);
  }
}
