html {
  height: 100%;
  width: 100%;
}

body {
  background-color: white;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  max-width: 1000px;
  margin: auto;
  padding-bottom: 100px;
  text-align: justify;
}

@media only screen and (max-width: 1000px) {
  body {
    width: 90%;
  }
}

@media print {
  .noprint {
    display: none;
  }
}

p {
  font-size: 16px;
}

h1,
h2,
h3 {
  color: midnightblue;
}

h1 {
  padding: 5px;
  border-bottom: 3px solid royalblue;
}

h2 {
  padding: 5px;
  border-bottom: 2px solid royalblue;
}

a {
  color: midnightblue;
  transition: transform 0.2s;
}

a:hover {
  color: royalblue;
}

table {
  width: 100%;
}

th,
td {
  border: 2px solid slategray;
  border-radius: 5px;
  text-align: center;
  transition: transform 0.2s;
  background-color: white;
  padding: 5px;
}

th {
  background-color: slategray;
  color: white;
}

.code,
pre,
code {
  font-family: ui-monospace, Menlo, Monaco, "Segoe UI Mono", "Roboto Mono",
    "Oxygen Mono", "Ubuntu Mono", "Source Code Pro", "Fira Mono",
    "Droid Sans Mono", "Consolas", "Courier New", monospace;
}

div.callout {
  border: 2px solid slategray;
  border-radius: 5px;
  color: slategray;
  padding: 10px;
  overflow: auto;
}

div.calloutShadow {
  box-shadow: 2px 2px 20px 0px;
  padding: 15px;
  border-radius: 5px;
}

button,
input,
textarea {
  padding: 5px;
  background-color: white;
  border: 1px solid slategray;
  border-radius: 5px;
  color: slategray;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 16px;
  box-sizing: border-box;
}

input,
textarea {
  color: black;
  width: 100%;
  padding: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
}

button:hover,
input[type="submit"]:hover {
  background-color: slategray;
  color: white;
}

.parameter {
  font-weight: bold;
}

footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  max-height: 100px;
  background-color: midnightblue;
  color: white;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  overflow: auto;
}

img.rwrap {
  float: right;
  padding: 10px;
}

img.lwrap {
  float: left;
  padding: 10px;
}
