@import url("cousine-v29-latin.css");
html {/* prevent the annoying layout shift when content exceeds the page height */
  scrollbar-gutter: stable;
}
::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
}
::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, .5);
  border-radius: 4px;
}/* End of content shift hacks */

body {
  display: block;
  font-family: "Cousine", monospace;
  font-size: 14px;
  line-height: 24px;
/*background-color: #1f1f1f; */
  background-color: #191919;
  color: #ffffff;
}
pre {
  display: block;
  font-family: "Cousine",monospace;
  font-size: 14px;
  line-height: 16px;
  white-space: pre;
  margin: 1em 0;
}
.sysinfo {
  display: block;
  font-family: "Cousine", monospace;
  font-size: 14px;
  line-height: 24px;
  color: #ffffff;
}
.terminal-container {
  font-family: "Cousine",monospace;
  font-size: 14px;
  line-height: 24px;
  width: 80ch;
}
.center-container {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;     /* Centers vertically */
}
a {
  font-weight: bold;
  text-decoration: none;
  color: cyan;
}
a:visited {
  font-weight: bold;
  text-decoration: none;
  color: cyan;
}
a:hover {
  font-weight: bold;
  text-decoration: none;
  color: HotPink;
}

a.home-link {
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
}
a.home-link:hover {
  font-weight: bold;
  text-decoration: none;
  color: /* HotPink; */
}
summary { /* Ensures the title looks like plain text and is clickable */
/*color: DodgerBlue;*/
  color: RoyalBlue;
  font-weight: bold;
  cursor: pointer;
  padding: 0; /* Removes default padding */
  display: block; /* Ensures it takes up the full line width */
}
summary:hover {
  font-weight: bold;
  text-decoration: none;
  color: HotPink;
}
details { /* Removes any default margin between accordions */
  margin: 0;
}
details ul, details ol {
  margin-left: 2em; /* Adjust the value as needed */
  padding-left: 0; /* Optional: Resets any default padding if margin is enough */
}
details > * {
  padding: 0; /* Removes padding from internal elements (like <p> or <ul>) */
  margin: 0;  /* Removes margin from internal elements */
}
ul {
  list-style: square; /* Make bullets square for a more retro look */
}
.error-text {
  color: red;
  font-weight: bold;
}

