:root {
 --bg: #010c3a;
 --feature: #f695e0;
 --text: #eceada;
 --grey: #aaa;
}

* {
  box-sizing: border-box;
  overscroll-behavior: none;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 3em 0 1em;
  font-size: 100%;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

a {
  text-decoration: none;
  color: var(--text);
  transition: 0.5s;
}

h2 {
  width: 100%;
  display: block;
  margin-bottom: 1em;
  padding: 0;
  color: var(--feature);
  font-weight: normal;
  font-size: 1.5rem;
  border-bottom: 1px solid;
}

pre {
  font: inherit;
  font-size: 1.22em;
  white-space: pre-wrap;
  line-height: 1.4em;
  text-align: center;
}

.content {
  margin: 0 auto;
  max-width: 50%;
}

:target {
  scroll-margin: 1em;
}

/*========== Thank You ==========*/
.jump-links {
  width: fit-content;
  list-style: none;
  font-size: 1.2em;
  font-weight: 600;
  text-align: left;
  border: 1px solid var(--feature);
  border-radius: 5px;
  margin: 0 auto;
  padding-left: 0;
}

.jump-links li {
  padding: 8px 25px;
}

.jump-links li:not(:last-child) {
  border-bottom: 1px solid #444;
}

.jump-links a {
  display: block;
  color: var(--feature);
}

.jump-links a:hover {
  color: var(--grey);
}

.copyright {
  text-align: center;
  font-size: 83%;
  color: var(--grey);
  margin: 3em 0 6em;
}

.copyright a {
  color: var(--grey);
  border-bottom: 1px dotted;
}

.copyright a:hover {
  border-bottom: 1px solid;
}

/*========== Ancillary ==========*/
#topBtn {
  opacity: 0;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  font-size: 18px;
  border: none;
  background-color: var(--feature);
  color: var(--bg);
  cursor: pointer;
  padding: 8px 13px;
  border-radius: 4px;
  transition: opacity .5s ease;
}

@media screen and (max-width: 1000px) {
  body {
    font-size: 92%; }
  .content {
    margin: auto 1.9em;
    max-width: 100%; }
}