/* =======================
   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: #3F4344;
  --link-color: #C25968;

  /* Backgrounds */
  --bg-1: #889A9B;
  --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;

    font-family: var(--font-family);
    font-size: 12px;
    background: var(--bg-2);
}
/* =======================
        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: bold;
  text-align: center;
  margin:3px;
  padding: 0;
}
h1 { font-size: 25px; }
h2 { 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;
}
/* =======================
   TABLE
======================= */
table, th {
  border: 0px dotted var(--border-1);
  border-collapse: collapse;
  padding: 0;
  margin: 0;
  width: 100%;
  font-size: 10px;
}
td {
  border: 1px dotted var(--border-1);
}
/* =======================
   NAVIGATION & DROPDOWN
======================= */
#navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;

  background-color: var(--bg-2);
  padding: 7px;
  margin-bottom:3%; 
  border: 1px dotted var(--border-1);
}

.dropdown {
  float: left;
  overflow: hidden;
  background-color: transparent;
}

.dropdown .dropbtn {
  color: var(--link-color);
  font: var(--font-family);
  border: none;
  padding: 0;
  margin: 0 0 0 5px;
  background-color: transparent;
}

.navbar a:hover,
.dropdown:hover .dropbtn {
  background-color: var(--bg-2);
}

.dropdown-content {
  display: none;
  float: left;
  z-index: 1;
  position: absolute;
  padding: 0;
  min-width: 100px;
  background-color: var(--bg-2);
  border: 1px dotted var(--border-1);
}

.dropdown-content a {
  float: none;
  color: var(--text-color);
  border-bottom: 1px dotted var(--border-2);
  display: block;
  text-align: left;
  padding: 2px;
}

.dropdown-content a:hover {
  background-color: var(--link-color);
  color: var(--bg-2);
  text-decoration: underline;
  letter-spacing: 1px;
  border-bottom: 1px dotted var(--border-2);
}

.dropdown:hover .dropdown-content {
  display: block;
}
.update {
  margin-left:5px;
}

/* =======================
   LAYOUT CONTAINERS
======================= */
.outer {
    width: 900px;
    margin: auto;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg-2);
}

.outer::after {
  content: "";
  display: table;
  clear: both;
}
.folder {
    width: 70%;
    height: auto; /* remove fixed height */
}
.content {
  border-radius: 0px 7px 7px 7px;
  border: 1px dotted var(--border-1);
  background: var(--bg-2);
  padding: 10px;

  width:100%;
  height:600px;
}
.clear {
    clear: both;
}
.header {
    background: transparent;
    border:none;

    width: 100%;
    height: auto;
}
.side {
    width: 25%;
    margin-left:30px;
    margin-top: 27px;
}
.clear {
	 clear: both;
}
.side-note {
	  padding: 12px;
	  max-height: 300px;
    border: 1px dotted var(--border-1);
}
/* =======================
   FOLDER TABS
======================= */
  input[type="radio"] {
    display: none;
  }
.folder-label {
    display: inline-block;
    background-color:#c6c7ca;
    color: var(--text-color);

    border: 1px dotted var(--border-1);
    border-bottom:0;
    border-radius: 7px 7px 0 0;

    position: relative;
    padding: 5px 20px;
    bottom: -1px;
}
  input[type="radio"]:checked + .folder-label {
    position: relative;
    border-bottom: 1px solid var(--bg-2);
    background-color:var(--bg-2);
    color: var(--link-color);
}
.folder-label.active {
    border-bottom: 1px solid var(--bg-2);
    background-color:var(--bg-2);
    color: var(--link-color);
}
.folder-label a {
    border: none; 
    display: block;

    color: var(--text-color);
    text-decoration: none;
    letter-spacing: 1px;

    font-size: 11px;
    font-weight: bold;
}
.folder-label:hover {
    background-color: var(--link-color);
    color: var(--bg-2);
}
.folder-tab-content {
    display: none;
}

#folder-tab1:checked ~ .content #folder-content1,
#folder-tab2:checked ~ .content #folder-content2,
#folder-tab3:checked ~ .content #folder-content3,
#folder-tab4:checked ~ .content #folder-content4,
#folder-tab5:checked ~ .content #folder-content5 {
    display: block;
}
/* =======================
   CONTENT
======================= */
.title {
  margin-bottom: 5px;
  padding: 5px;
  border-bottom: 1px dotted var(--border-1);
  font-family: 'JacquardaBastarda-9';
  font-size: 16px;
  line-height: 1;
  letter-spacing: 1px;
}
.ascii-art {
    font-family: 'MS PGothic', monospace;
    font-size: 12pt;
    margin-top: 15%;
    white-space: pre;     
    display: block;      
    line-height: 1;        
    text-align: left;     
}
