:root {
  --background-color: white;
  --outside-color: #A3948D;
  --text-color: #554E52;
  --accent: #131D26; 
  --accent-hover: #965E3E;
  --link: #672407; 
}

@font-face {
  font-family: 'Bunny';
  src: url('TheGoddessBunny-TwoStep.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'CC';
  src: url('ClosedCaption.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html {
    margin: .25vw;
    background: var(--outside-color)
}

a {
    color: var(--link); 
    font-weight: bold;
}

body {
    position: relative;
    display: flex; 
    flex-direction: column;
    align-items: center;
    gap: 1vw;
    background: var(--background-color);
    color: var(--text-color);
    font-family: 'CC', serif;
    font-weight: 100;
    font-style: normal;
    font-size: 12px;
    line-height: 1.5;
    padding: 2vw;
    text-align: center;
}

header {
    color: var(--accent);
}

header a {
  color: inherit; 
  text-decoration: none;
}

header a:hover {
  color: var(--accent-hover);
}

h1 {
    font-weight: bold;
    font-size: 60px;
    margin: 0vw;
    font-family: 'Bunny', monospace;
    opacity: .9;
}

h2 {
  opacity: 0.75;
  font-size: 17px;
  font-family: 'Inconsolata', monospace;
}

h3 {
  font-family: 'Inconsolata', monospace;
  font-size: 14px;
}

nav {
    display: flex; 
    justify-content: center;
    margin-top: -1vw;
    padding-bottom: 0;
    gap: 35px;
    color: var(--text-color);
    font-size: 13px;
    font-family: 'Inconsolata', monospace;
}

nav a:hover {
  color: var(--accent-hover);
  text-decoration: underline dashed var(--accent);
  letter-spacing: 1px;
}

.back-nav {
  position: fixed;
  top: 3.5vw;
  left: 3vw;
  z-index: 10;
  font-size: 11px;
  opacity: 0.75;
  text-decoration: underline;
}

.back-nav a {
  font-family: 'Inconsolata', monospace;
  color: var(--text-color);
  text-decoration: none;
  font-weight: normal;
}

.back-nav a:hover {
  color: var(--accent-hover);
  text-decoration: underline dashed var(--accent);
  opacity: 1;
}

hr {
    border: none;
    border-top: 1px dashed var(--accent);
    width: 10%;
    margin: 1vw auto;
    padding-bottom: 1vw;
}

.text {
  max-width: 600px;
  margin: 0 auto;
}

.email {
    color: var(--accent);
}

.ascii-row {
  display: flex;
  gap: 50px;
}

.ascii {
  font-family: 'Inconsolata', monospace;
  font-size: 9px;
  line-height: 1.2;
  margin: 0;
}

.adornment {
  position: absolute;
  top: 6vw;
  right: 10vw;
  font-family: 'Inconsolata', monospace;
  font-size: 10px;
  line-height: 1.2;
  margin: 0;
  color: var(--text-color);
  z-index: 10;
}

@media (max-width: 975px) {
  .adornment {
    position: static;
    top: auto;
    right: auto;
    margin: 1vw auto 0;
    text-align: center;
  }
}

.font-credit {
  position: fixed;
  bottom: 12px;
  right: 12px;
  font-size: 9px;
  opacity: 0.5;
  z-index: 10;
}

.font-credit a {
  color: var(--link);
  font-weight: normal;
  text-decoration: none;
}

.font-credit a:hover {
  color: var(--accent-hover);
  opacity: 1;
  text-decoration: underline dotted var(--accent);
}