:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --link-color: #4979bf;
    --link-visited-color: #551a8b;
    --header-shadow: rgba(0, 0, 0, 0.1);
    --accent-color: #4a90e2;
    --light-color: #616060;
    --rar-color: #262626;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #292828;
        --text-color: #eeeeee;
        --link-color: #7d9cc9;
        --link-visited-color: #c58af9;
        --header-shadow: rgba(255, 255, 255, 0.1);
        --accent-color: #4a90e2;
        --light-color: #616060;
        --rar-color: #e0e0e0;
    }
}


h2 {
    width: fit-content;
    border-bottom: 2px solid var(--light-color);
}

html {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: serif;
    transition: background-color 0.2s, color 0.2s;
}

body {
    margin: 8px;
    padding-bottom: 60px;
}

a {
    color: var(--link-color);
}

a:visited {
    color: var(--link-color);
}

.nolink {
    color: var(--text-color);
    text-decoration: none;
}

.nolink:visited {
    color: var(--text-color);
    text-decoration: none;
}

.nolink:hover {
      text-decoration: underline;
}

.contact-table td {
    padding-left: 20px;
}

.quote {
    position: fixed;
    bottom: 10px;
    right: 10px;

  opacity: 0;
  visibility: hidden;
  
  transition: opacity 0.225s ease, visibility 0.225s ease;
}

.quote.show {
  opacity: 1;
  visibility: visible;
}

#page-bottom-marker {
    margin-top: 5.0rem;
  height: 1px; 
}

.indented-p {
  margin-left: 2rem;  
  text-align: left;

  position:relative;
  padding-left: 1rem; 
}

.indented-p::before {
  content: ">"; 
  
  position: absolute;
  left: -1.5rem;
  top: 0.5rem;  
  
  font-size: 2em;
  
  color: var(--rar-color);
  font-weight: 100;
  
  line-height: 1; 
}
