    /* =======================
   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;
} 
@font-face {
    font-family: 'Times New Roman';
    font-style: normal;
    font-weight: 400;
    src: local('Times New Roman'), url('https://fonts.cdnfonts.com/s/57197/times.woff') format('woff');
}
/* =======================
   ROOT VARIABLES
======================= */
:root {
  /* Text */
  --font-family: 'Times New Roman';
  --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);
}

/* =======================
   TEXT & LINKS
======================= */
a {
  color: blue;
  background: transparent;
  text-decoration: underline;
}

a:hover {
  color: blue;
  letter-spacing: 1px;
}

p {
  margin: 3px;
  line-height: 1;
}

b, i {
  font-weight: bold;
}

i {
  font-style: italic;
}

/* =======================
   HEADERS
======================= */
h1, h2 {
  font-family: var(--font-family);
  font-weight: bold;
  text-align: center;
  margin: 3px;
  padding: 0;
}

h1 { 
  font-size: 25px;
  font-variant: small-caps;
  border-bottom: 1px dashed;
}

h2 { font-size: 20px; }

/* =======================
   TABLE
======================= */
table, th {
  border: 0;
  border-collapse: collapse;
  padding: 0;
  margin: 0;
  width: 100%;
  font-size: 10px;
}

td {
  border: 1px dotted var(--border-1);
}
/* =======================
   NAVIGATION BAR
======================= */
#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;
}


/* =======================
   BODY LAYOUT
======================= */
body {
  background-color: var(--bg-2);
  color: var(--text-color);
  font-family: var(--font-family);
  font-optical-sizing: auto;
    letter-spacing:1px;
    font-size:14px;
    font-weight:bold;
  margin: 0;
  padding: 0;
  filter: blur(0.4);
}

/* =======================
   LAYOUT
======================= */
.main {
    width:1000px;
    height: auto;
    padding:10px;
    margin: 0 auto; 
}
.title {
  margin-top: 1%;
  width: 100%;
  padding: 10px;
  font-size: 30px;
  letter-spacing: 1px;
}
.extra {
  margin-top: 3px;
  width: 100px;
  padding:10px;
  font-size:16px;
}
.pages {
    width:auto;
    height: auto;
    padding:10px;
    margin: 0 auto; 
    font-size:16px;
    text-align:center;
}
.container {
  width:100%;
  height:auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* exactly four columns */
  gap: 10px;
  margin:10px;
}
.post {
  display: flex;
  flex-direction: column;
}

/* =======================
   LAYOUT
======================= */
.post-image {
  height: 155px;
  border-style: outset;
  overflow: hidden;
}
.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
  opacity:0.9;
  filter: brightness(90%) saturate(60%);
}
.post-title {
  padding: 5px;
  text-align: center;
  border:none;
}
.post-title a {
  padding: 5px;
  text-align: center;
  border:none;
  color: blue;
}
#header {
    margin:0;
    padding: 0;
}

