/* min.css */

html {
  font-size: clamp(2px, 4vw, 36px);
}

body {
  font-family: sans-serif;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
}

section {
  max-width: 800px;
  margin: auto;
  padding: 1rem;
  display: block;
}

.centered {
  text-align: center;
}

img.standardized {
  max-width: 360px;     /* Don't exceed this width */
  height: auto;         /* Keep aspect ratio */
  display: block;       /* Allow centering via margin */
  margin-left: auto;
  margin-right: auto;
}

p {
  margin-bottom: 0.5rem;
}

ul {
  margin: 0;
  padding: 0;
}

ul.indented-bullets {
  list-style-position: inside;
  padding-left: 2em;
}

/*.nav-links a {
  
}*/

a.top-link {
  color: #FFEB3B;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
  font-size: 0.9rem;
/*  margin: 0 0.4rem;*/
}

a.midline {
  color: #993399;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
  font-size: 0.9rem;
/*  margin: 0 0.4rem;*/
}

a.midline:hover {
  color: #602060;
  text-decoration: underline;
}

a.top-link:hover {
  color: #C9B000;
  text-decoration: underline;
}

a.active {
  color: #B0A500; /* a darker gold or olive shade */
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold; /* optional: to emphasize */
}

