*, *::before, *::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
}

h2 {
  color: red;
  font-family: "cooper black", sans-serif;
  text-align: center;
  font-size: 2em;
}

h3 {
  color: red;
  font-family: "cooper black", sans-serif;
  font-size: 1.8em;
}

p {
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  padding-bottom: 1em;
}

a {
  color: magenta;
}

.tooltip {
  position: relative;
  display: inline-block;
}
.tooltip:not(:has(> img)) {
  border-bottom: 1px dotted black;
}
.tooltip {
  cursor: help;
}
.tooltip-text {
  visibility: hidden;
  position: absolute;
  z-index: 99999999999;
  top: 1em;
  left: 0;
  background-color: green;
  width: 30ch;
  padding: 3px;
  color: white;
  border: 2px solid black;
  text-align: left;
}
.tooltip-text a {
  color: brown;
}
.tooltip:hover .tooltip-text {
  visibility: visible;
}

.new, .new-small {
  position: relative;
}
.new::after, .new-small::after {
  overflow: hidden;
  position: absolute;
  z-index: 99999999;
  top: -20px;
  right: -40px;
  rotate: 10deg;
  content: url("/image/icons/new.gif");
}
.new-small::after, .new-small-small::after {
  scale: 60%;
  right: -80px;
  rotate: -5deg;
}

.home-button {
  content: url("/image/buttons/home-button.gif");
}
.home-button:hover {
  outline: 2px red outset;
}

.title {
  font-size: 3em;
}

img#openImageWhenClicked {
  cursor: zoom-in;
}

table {
  width: 100%;
}
table, table th, table td {
  border: 3px solid black;
  border-collapse: collapse;
  padding: 5px;
}
table .centre {
  text-align: center;
}
table .left {
  text-align: left;
}

code {
  background-color: #1F1F1F;
  font-family: "consolas", monospace;
  padding: 1px 3px;
  border-radius: 5px;
  color: #9CDCFE;
  font-size: 0.85rem;
}
code.string {
  color: #CE8F70;
}
code.string::before {
  content: '"';
}
code.string::after {
  content: '"';
}
code.number {
  color: #B5CEA8;
}
code.keyword {
  color: #8b41b4;
}/*# sourceMappingURL=main.css.map */