@media (prefers-color-scheme: light) {
  :root {
    color-scheme: light;
    --background: #ffffff;
    --text: #000;
    --link: #42444a;
  }

  a {
   text-decoration: underline;
transition: text-decoration-color 0.3s ease, text-decoration-thickness 0.3s ease, background-color 0.3s ease;
  }

.site-title a,
.site-title a:link,
.site-title a:visited,
.site-title a:hover,
.site-title a:active {
  text-decoration: none !important;
  color: inherit; /* Keeps original text color */n}

}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --background: #000000;
    --text: #f7f7f7;
    --link: #cccccc;

  }

  a {
text-decoration: underline;
link-hover: #ffffff;
  }

.site-title a,
.site-title a:link,
.site-title a:visited,
.site-title a:hover,
.site-title a:active {
  text-decoration: none;
  color: inherit; }

.site-title a:hover,
.site-title a:active {
  color: #ffffff !important;
}

}



a,
 {
  padding: 2px 0;
  border-radius: 2px;
}


.site-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-size: 2.5rem;
  line-height: 1.2; }
