:root {
    --color-primary: #000; /* BACKGROUND COLOR */
    --color-secondary: #fff; /* TEXT COLOR */
}

body {
  background-color: var(--color-primary);
  color: var(--color-secondary);
  font-size: 17px;
  font-family: Times, serif;
  margin: 8px;
}

a{
    color: blue;
}
a:visited{
    color: purple;
}

h1{
  font-size: 1em;
}

h2{
  font-size: 1em;
}

ul{
  list-style: none;
  padding: 0
}

.max-size-768-wrapper {
    margin-left:auto;
    margin-right:auto;
    margin-bottom:0;

    padding: auto;

    max-width: 768px;
}

::selection {
    background: #ffffff88;
    color: var(--color-primary);
  }

  details {
    list-style-type: disclosure-closed;
  }