@import url('https://fonts.bunny.net/css2?family=Inria+Serif');

body {
     background: #e8e4e5 url('/assets/backgrounds/pinkbows.png') repeat;
     font-family: 'Inria Serif';
     line-height: 1.6;
     font-size: 14px;
     text-align: center;
     letter-spacing: 1px;
     color: #151515;
}
html, a {
    cursor: url('/assets/cursors/pinkbow_big.png'), auto;
}
.box {
     display: flex;
     flex-direction: column;
     align-items: center;
     padding: 10px 0 0 10px;
}
.links {
     width: 800px;
     background-color: #fffafb;
     box-sizing: border-box;
     padding: 1em;
     border-radius: 1em;
     box-shadow: 0.25em 0.25em 0.5em rgba(0,0,0,0.2);
     border: 3px solid #ecb4cc;
}
a {
     text-decoration: none;
     color: #f248e7;
}
a:visited {
     color: #81767d;
}
a:hover {
     font-style: italic;
}
a:active {
     font-style: italic;
}

h1, h2, h3, h4 {
     text-shadow: 1px 1px 1px #ffffff;
}
h2 {
    line-height: 0px;
    font-size: 26px;
    color:#e98cca;
    text-align: center;
}
h3 {
    font-size: 19px;
    color:#e5b6d5;
    text-align: center;
    text-decoration: underline;
}
.footerbox {
     display: flex;
     flex-direction: column;
     align-items: center;
     padding: 10px 0 0 10px;
}
.footertext {
     width: 375px;
     background-color: white;
     box-sizing: border-box;
     padding: 1em;
     border-radius: 1em;
     box-shadow: 0.25em 0.25em 0.5em rgba(0,0,0,0.2);
     border: 3px solid #ecb4cc;
}
 ::-webkit-scrollbar {
     width: 12px;
}
 ::-webkit-scrollbar-track {
     background-color: #ffffff;
}
 ::-webkit-scrollbar-thumb {
     background-color: #ecb4cc;
}
.credits-page {
    text-align: left;
}
.credits-header {
    text-align: center;
    margin-bottom: 1.5em;
    border-bottom: 1px dotted #ecb4cc;
    padding-bottom: 1em;
}
.credits-header h1 {
    margin: 0 0 0.25em;
    font-size: 28px;
    color: #e98cca;
    text-shadow: 1px 1px 1px #ffffff;
}
.credits-header p {
    max-width: 560px;
    margin: 0 auto;
    color: #5c5057;
}
.credit-section {
    margin: 1.25em 0;
    padding: 0.9em 1em;
    background: #fff4f8;
    border: 1px solid #f2c8da;
    border-radius: 0.8em;
}
.credit-section h2 {
    line-height: 1.2;
    margin: 0 0 0.55em;
    font-size: 18px;
    color: #d96fad;
    text-align: left;
    text-decoration: none;
}
.credit-section p {
    margin: 0;
}
.credit-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.credit-list li {
    position: relative;
    list-style: none;
    margin: 0.45em 0;
    padding-left: 1.8em;
}
.credit-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: var(--icon-y, 0.45em);
    width: 14px;
    height: 14px;
    background-image: var(--credit-icon);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.credit-viewing {
    --credit-icon: url('/assets/graphics/tinybun.gif');
}
.credit-software {
    --credit-icon: url('/assets/graphics/book.gif');
}
.credit-hosting {
    --credit-icon: url('/assets/graphics/desktop.png');
    --icon-y: 0.25em;
}
.credit-fonts {
    --credit-icon: url('/assets/graphics/speech_love.gif');
    --icon-y: 0.3em;
}
.credit-code {
    --credit-icon: url('/assets/graphics/book.gif');
}
.credit-graphics {
    --credit-icon: url('/assets/graphics/pbow.gif');
}
.links .outgoing-link-list {
  list-style: none;
  padding-left: 0;
  margin: 0.5em auto 1.4em;
}
.links .outgoing-link-list li {
  position: relative;
  padding-left: 22px;
  margin: 0.35em 0;
  line-height: 1.45;
  text-align: left;
}
.links .outgoing-link-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 14px;
  height: 14px;
  background: url("/assets/graphics/pbow.gif") center / contain no-repeat;
  image-rendering: pixelated;
}
.links .outgoing-link-list .link-note {
  font-size: 0.95em;
}

@media (max-width: 1024px) {
  body {
    font-size: 13px;
    letter-spacing: 0.5px;
  }
  .box {
    padding: 10px;
  }
  .links {
    width: 95%;
    max-width: 100%;
    padding: 1em;
    border-radius: 0.75em;
  }
  h1 {
    font-size: 25px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 18px;
  }
}