@font-face {
font-family: 'playfair';
src: url('https://liminalmind.neocities.org/playfair/PlayfairDisplay-Regular.woff') format('woff'),
url('https://liminalmind.neocities.org/playfair/PlayfairDisplay-Regular.woff2') format('woff2');
}  

@font-face {
font-family: 'playfair';
src: url('https://liminalmind.neocities.org/playfair/PlayfairDisplay-Italic.woff') format('woff'),
url('https://liminalmind.neocities.org/playfair/PlayfairDisplay-Italic.woff2') format('woff2');
font-style: italic;
}  

@font-face {
font-family: 'stussy';
src: url('https://liminalmind.neocities.org/stussy%20script/StussyScript-Regular.woff') format('woff'),
url('https://liminalmind.neocities.org/stussy%20script/StussyScript-Regular.woff2') format('woff2');
}  

@font-face {
font-family: 'inconsolata';
src: url('https://liminalmind.neocities.org/inconsolata/Inconsolata-Regular.woff') format('woff'),
url('https://liminalmind.neocities.org/inconsolata/Inconsolata-Regular.woff2') format('woff2');
}  

@font-face {
font-family: 'overpass mono';
src: url('https://liminalmind.neocities.org/overpass%20mono/OverpassMono-Light.woff') format('woff'),
url('https://liminalmind.neocities.org/overpass%20mono/OverpassMono-Light.woff2') format('woff2');
}  
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      cursor: url(https://cur.cursors-4u.net/cursors/cur-11/cur1059.ani), url(https://cur.cursors-4u.net/cursors/cur-11/cur1059.png), auto !important;/* End https://www.cursors-4u.com */
    }

    html, body {
      height: 100%;
      width: 100%;
      font-family: 'inconsolata';
      font-size: 16px;
      background-color: #000;
      color: #fff;
    }

  /* Fixed header */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 60px;
      background-color: #563734;
      color: #635D66;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 35px;
      font-family:'stussy';
      font-weight: 600;
      letter-spacing: 2px;
      text-shadow: 
      -1px -1px 0 black,  
      1px -1px 0 black,
      -1px  1px 0 black,
      1px  1px 0 black;
      z-index: 1000; /* keeps it above other elements */
    }


    .container {
      display: flex;
      height: 100vh; /* full window height */
      width: 100%;
      padding-top: 60px; /* 80px header + extra spacing */

    }

    .sidebar {
      width: 200px;
      background-color: #000;
      color: white;
      padding: 10px;
    }

    .sidebar a {
      display: block;
      margin: 10px -4;
      color: white;
      text-decoration: none;
      padding:3px;
    }

    .sidebar a:hover {
      text-decoration-line: none;
      text-decoration-style: wavy; 
      background-color: #635D66;
      letter-spacing: 8px;
      font-size:12px;
    }

    .content {
      flex: 1; /* take remaining space */
    }

    .content iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

/*universal text styles so I dont get confused*/

h1 {
    font-family: 'stussy';
    font-size: 25px;
    font-weight: normal;
    color: #DDB87C;
}

h2 {
    font-family: 'playfair';
    font-size: 25px;
    font-style:italic;
    font-weight: normal;
    color: #6A4A45;
    border-bottom: 1px dashed;
}
h3 {
    font-family:'overpass mono';
    font-size: 18px;
    font-weight: normal;
    color: #B0B5AC;
}

h4 {
  font-family:'inconsolata';
  font-size: 14px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: -0.25px;
  padding: 3px 3px;
  text-align: center;
  background-color: #3E383E;
}

b, u, i {
    font-family: 'overpass mono';
    font-size: 14px;
}

b {
    color: #DDB87C;
}
u {
text-decoration-line: underline;
text-decoration-style: wavy; 
}
strong {
    color: #B0B5AC;
    background-color: #563734;
    font-family: 'inconsolata';
    font-size:19px;
}

  .censored {
    color: transparent;       
    text-shadow: 0 0 8px #fff; 
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .censored:hover {
    color: white;  
    text-shadow: none;
  }

ul {
list-style: none;
margin-left: 0;
padding-left: 0;
}

li {
padding-left: 5px;
padding-bottom:5px;
padding-top:5px;
text-indent: 0;
border-bottom: 1px none;
}

li:before {
content: "✶";
padding-right: 8px;
line-height: 18px;
font-size:13px;
}

/* tables/divs */

.title-bar, .box-title-bar {
background: #3E383E;
font-size:12px;
border-radius:8px 8px 0 0 ;
color: #B0B5AC;
padding: 5px;
padding-top: 3px;
padding-bottom: 3px;
position: sticky;
top: 0;
}