/* =======================
   FONT IMPORT
======================= */
@font-face {                  
  font-family: 'JacquardaBastarda-9';
  src: url(https://humantooth.neocities.org/fonts/JacquardaBastarda9.woff2) format('woff2');
  font-weight: normal;
  font-style: normal;
} 
/* =======================
   ROOT VARIABLES
======================= */
:root {
  /* Text */
  --font-family: Monospace;
  --text-color: #B8BEBE;
  --link-color: #C25968;

  /* Backgrounds */
  --bg-1: #3D4142;
  --bg-2: #E5E6E7;

  /* Borders */
  --border-1: #3F4344;
  --border-2: #C25968;
}

/* =======================
   MISCELLANEOUS
======================= */
::selection {
  background-color: var(--link-color);
  color: var(--bg-2);
}

::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-thumb {
  border: 1px dotted var(--border-1);
  background-color: var(--bg-2);
  border-radius: 5px;
  -webkit-transition: 0.25s;
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--link-color);
  -webkit-transition: 0.25s;
}
/* =======================
        BODY
======================= */
body {
    margin: 0;
    padding: 0;

    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 12px;
    background: var(--bg-1);
}
/* =======================
        TEXT
======================= */
a {
  color: var(--link-color);
  background-color: transparent;
  text-decoration: underline;
}     
a:hover {
  color: var(--text-color);
  background-color: transparent;
  text-decoration: underline;
  letter-spacing: 1px;
}   
/* =======================
         HEADERS
======================= */
h1, h2 {
  font-family: 'JacquardaBastarda-9';
  font-weight:normal;
  text-align: center;
  margin:3px;
  padding: 0;
}
h1 { font-size: 20px; }
p {
    margin:3px;
    line-height:1;
}
b {
  color: var(--bg-1);
  font-weight: bold;
}
i {
  color: var(--bg-1);
  font-weight: bold;
  font-style: italic;
}
.title {
  border-bottom: 1px dotted var(--bg-2);
  padding:3px;
  margin-bottom:7px;
}
/* =======================
   LAYOUT
======================= */
#main {
  text-align: left; 
  margin: auto;
  margin-top:3%;
  margin-bottom:2%;
  width:650px;
}
#map {
  text-align: left; 
  float:left;
  margin: auto;
}
#map img {
  width:auto;
  height:700px;
  image-rendering: pixelated;
}
#sidebar {
  float:right;
  margin-top:10%;
  border: 1px dotted var(--bg-2);
  height:500px;
  width:180px;
}
.map-links {
  padding:5px 0 7px 20px;
}
ul {
  padding: 0;
  padding-left: 20px;
  margin: 3px;
  margin-top: 6px;
}
li {
  list-style-image: url('https://ianuarii.neocities.org/icons/z10-icon-square.gif');
  list-style-position: outside;
  list-style-type: none;
  padding: 0;
  margin-left: 0;
}

/* =======================
   FOOTER
======================= */
#footer {
    clear:both; 
    text-align:center;
}
#credits {
    margin:auto; 
    padding:5px;
    height:30px; 
    width:600px;
}