 /* FONTS */
@font-face {
  font-family: 'Libre Baskerville';
  src: url('/interface/2023_gradients/LibreBaskerville-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Libre Baskerville';
  src: url('/interface/2023_gradients/LibreBaskerville-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'Libre Baskerville';
  src: url('/interface/2023_gradients/LibreBaskerville-Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}
/* UNIVERSAL ELEMENTS */
* {
   box-sizing: border-box;
}
html {
  position: relative;
  padding: 0 1ch 0 1ch;
  /* Use the same color in the first and last position so that the color
	loops around smoothly with no hard line separating first and last.*/
  background: radial-gradient(circle at center, white 0%, white 10%, transparent 40%), conic-gradient(from -45deg, #040b5d 0%, #1a1439 8%, #081111 49%, #fba7c5 70%, #040b5d 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100svh;
  font-size: 16px;
   color: #202020;
}
html::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/interface/2025_gradients/traingles.png');
  opacity: 0.7; /* Adjust transparency (0.1 to 0.5) */
  mix-blend-mode: ;
  pointer-events: none; /* Allows clicks to pass through */
  z-index: 1;
}
body {
   position: relative;
   border:
    black 2px solid;
  background: url('signature_logo.svg') no-repeat left top / 3rem auto, rgba(255, 255, 255, 0.9);
  padding: .8em 1rem 0 1rem;
  margin: 1rem auto 2rem auto;
   max-width: 60ch;
   text-size-adjust: 100%;
   font-family: Arial, sans-serif;
   display: flex;
  flex-direction: column;
  min-height: 100%;
}
a {
  color: #457866 ;
}
a:visited {
  color: #235242 ;
}
a:hover {
  color: #28b886 ;
}
a:active {
  color: #2abb88 ;
}
main {
  flex: 1;
}
article p, article li {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.125em;
  line-height: 1.8;
}
.bibliography_url {
   overflow-wrap: anywhere;
}
section {}
#links ul {
  padding-left: 0;
  list-style-type: none;
}
#links ul li {
  position: relative;
  padding-left: 5rem;
  margin-bottom: 1rem;
	min-height: 4rem;
}
#links ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4rem;
  height: 4rem;
  background-image: url('Images/link_icon_test.jpg');
  background-size: contain;
  background-repeat: no-repeat;
}
figure {
  width: inherit;
}
img {
  max-width: 100%;
  height: auto;
}
cite {
  font-weight: bold;
}
footer {
   flex-shrink: 0;
  border-top: thin solid;
  padding: .3em 0 .5em 0;
  margin-top: 1rem;
}
footer svg {
  margin-right: .2em;
}
footer svg path {
   fill: #000000;
}
form input, form select, form textarea {
  display: block;
}
figure {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 0;
   padding-bottom: 66.67%;
   margin: 0 0 2.5em 0;
}
figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
figure:after {
  content: "";
  display: block;
  padding-bottom: 0.5em;
}
figure figcaption {
  position: absolute;
  bottom: -1.5em;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 1em;
}
/* PSEUDO-ELEMENTS */ ::selection {
  background-color: #3d2930 ;
  color: #f5f0f1 ;
}
/* UNIQUE ELEMENTS */
#top_level_nav, #archive_nav {
  position: absolute;
  top: 0;
  right: 0;
  font-size: .75em;
}
#top_level_nav li, #archive_nav li {
  display: inline;
  list-style-type: none;
  text-align: right;
  margin-right: 1rem;
}
#contact_form {
  display: flex;
  flex-direction: column;
  max-width: 37.5em;
  margin: 0 auto 2em auto;
}
#contact_form .form_section {
  margin-bottom: 1.25em;
}
#contact_form label {
  display: block;
  margin-bottom: 0.3125em;
}
#contact_form input, #contact_form textarea {
  padding: 0.625em;
  border-radius: 0.3125em;
  border: 0.0625em solid #ccc;
  font-size: 1em;
  width: 100%;
  box-sizing: border-box;
  color: #3d2930 ;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
#contact_form input::placeholder, #contact_form textarea::placeholder {
  color: #d6c2c9 ;
}
#contact_form textarea {
  height: 9.375em;
}
#contact_form button {
  background-color: #3d2930 ;
  color: #f5f0f1 ;
  transition: color 0.3s ease, background-color 0.3s ease;
  padding: 0.625em 1.25em;
  border: none;
  border-radius: 0.3125em;
  font-size: 1em;
  cursor: pointer;
}
#contact_form button:hover {
  background-color: #28b886 ;
}
#contact_form ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin-bottom: 1.25em;
}
#contact_form ul li:before {
  content: "●";
  color: #3d2930 ;
  font-weight: bold;
  display: inline-block;
  width: 1em;
}
#contact_thanks {
  display: none;
}
#debug_output {
  display: none;
}
/*This ID is from hCaptcha
*/
#msg_fail {
  display: none;
}
#bibliography h2 {
  margin-top: 2em;
}
#bibliography h3 {
  margin-top: 2em;
}
/* CLASSES */
.bibliography_list li cite {
  font-weight: bold;
  text-transform: capitalize;
}
.bibliography_list {
  margin-left: 1em;
  padding-left: 0;
  list-style: none;
}
.bibliography_list li {
  margin-top: .66em;
  text-indent: -1em;
}
.comic_strip {
  background-color: white;
  border: thin solid #3d2930 ;
  padding: 2em 0 2em 0;
}
.comic_strip figure {
   margin: 0;
}
.comic_strip h3 {
  margin-left: 3em;
}