/*
Source - https://stackoverflow.com/a/10813665
Posted by Konrad Rudolph, modified by community. See post 'Timeline' for change history
Retrieved 2026-05-16, License - CC BY-SA 4.0
*/

details>summary::-webkit-details-marker {
  display: '';
}

details>summary::before {
  content: '';
}

details[open]>summary::before {
  content: '';
}

details {
  border: 1px solid gray;
  border-radius: 0.2rem;
  padding: 0.5rem;
}

details[open]>summary {
  margin-bottom: 0.5rem;
}


@font-face {
  font-family: Font1;
  src: url(Bagnard.otf);
}
p { color: white; }
p { font-family: Font1; }
body {
  background-image: url('Default.png');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  min-height: 100%;
}
a:link {
  color: red;
  background-color: transparent;
  text-decoration: none;
}
a:visited {
  color: green;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}
a:active {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}