@font-face {
  font-family: 'header';
  font-style:  semibold;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Oswald-Regular.ttf") format("truetype")
}

@font-face {
  font-family: 'Inter';
  font-style:  italic;
  font-weight: 420;
  font-display: swap;
  src: url("../fonts/Inter-Italic.woff2") format("woff2")
}
@font-face {
  font-family: 'Inter';
  font-style:  normal;
  font-weight: 420;
  font-display: swap;
  src: url("../fonts/Inter-Regular.woff2") format("woff2")

}
@font-face {
  font-family: 'Inter';
  font-style:  normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Inter-Bold.woff2") format("woff2")

}
@font-face {
  font-family: 'Inter';
  font-style:  italic;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Inter-BoldItalic.woff2") format("woff2")
}

@font-face {
  font-family: "mono";
  font-weight: 420;
  src: url("../fonts/intelone-mono-font-family-regular.otf") format('OpenType')
}

:root {
  --bg: #363636;
  --bg-darker: #333333;
  --bg-darkest: #222222;
  --text: #A0A0A2;
  --header: #79808A;
  --alt1: #79808A;
  --alt2: #79808A;
  --alt3: #957A65;
  --border: #4B4B4B;
  --header-font: "header";
  --mono-font: "mono";
}

body {
  margin: 0;
  font-family: "Inter", "Arial";
  font-size: 1.21rem;
  line-height: 150%;
  color: var(--text);
  font-weight: 400;
  background-color: var(--bg);
}

header {
  height: 250px;
  overflow: hidden;
  margin-bottom: 30px;
}

header img {
  margin: 0;
  width: 100%;
  object-fit: cover;
}

main {
  min-height: 100vh;
  padding: 0 15px;
}

nav {
  position: absolute;
  top: 0;
}

#menu {
  margin-left: 15px;
  margin-top: 15px;
  font-size: 250%;
  line-height: 50px;
  border: none;
}

nav #links {
  position: fixed;
  display: none;
  font-weight: 500;
  background-color: var(--bg-darker);
  padding: 0 15px 15px 0;
  z-index: 1;
}

.kofi img {
  width: 30px;
  height: auto;
}

.dim {
  filter: brightness(75%);
}

#links a, #links form {
  margin-left: 15px;
  margin-top: 10px;
  font-size: 125%;
  border: none;
  display: block;
}

.container {
  margin: auto;
  max-width: 960px;
}

footer {
  padding: 15px;
  background-color: var(--bg-darker);
}

.post {
  padding-bottom: 120px;
}

[alt="thumb"] {
  float: right;
  margin: 15px;
  width: 200px;
  height: 200px;
  border: 1px solid var(--border);
  text-align: center;
  background-color: var(--text);
  padding: 5px;
  border-radius: 15px;
}

[alt="full"], [alt="center"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
  text-decoration: none;
  border-radius: 15px
}

[alt="round"] {
  clip-path: circle()
}

.center {
  text-align: center;
}

/* any child divs of .song */
.song > div {
  text-align: left;
  white-space: pre;
  font-style: italic;
  display: inline-block;
}

.small, .date {
  margin: 15px;
  font-size: 90%;
  text-align: center;
  font-style: italic;
  color: var(--alt1);
}

.tags {
  margin-top: 15px;
  font-style: italic;
}

#search {
  float: right;
  margin-top: 5px;
  border-radius: 5px;
  padding: 5px 5px;
  font-size: 90%;
  width: 180px;
  color: #CECCCA;
  background-color: var(--bg-darkest);
  border: 1px solid var(--bg-darkest);
}

.post-break {
  margin-top: 10px;
  text-align: right;
}

.read-more {
  display: inline-block;
  color: var(--alt3);
  text-decoration: none;
}

#load-more {
  display: none;
  margin: 15px auto;
  font-size: 90%;
  color: var(--bg-darker);
  background-color: var(--alt2);
  padding: 15px;
  border: none;
  border-radius: 15px;
}

#load-more.show {
  display: block;
}

.social img {
  opacity: .33;
  width: 50px;
  margin: 15px 0 15px 0;
  padding: 10px 10px 0 0;
  display: inline-block;
  text-decoration: none;
  border: 0;
}

audio {
  margin-top: 15px;
  margin-bottom: 15px;
  width: 100%;
}

.post img, header img {
  max-width: 100%;
  max-height: 100%;
  height: inherit !important;
}

b, strong {
  font-weight: 700;
}

code {
  background-color: #414141;
  color: var(--alt3);
  font-family: var(--mono-font);
}

a {
  color: var(--header);
  text-decoration: none;
  border-bottom: 1.2px solid var(--border);
}

a:hover,
.post-title:hover, .active, .archive {
  color: var(--alt3);
}

table, ul, ol {
  margin-bottom: 45px;
  font-size: 90%;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table, th, td {
  border: 1px solid var(--border);
}

th {
  background-color: var(--bg-darker);
}

th, td {
  padding: 2.5px 5px;
}

ul {
  text-align: left;
  margin-left: 15px;
  padding-left: 0px;
}

ol {
  text-align: left;
  margin-left: 20px;
  padding-left: 5px;
}

ul li {
  list-style-type: '\2726';
  padding-left: 10px;
}

blockquote {
  padding-left: 15px;
  border-left: 5px solid var(--alt2);
  display: block;
  margin-inline-start: 5px;
}

/* views */
.image img {
  border-radius: 50%;
  float: right;
  clear: right;
  padding: 5px;
  width: 250px;
  height: 250px;
  overflow: auto;
  background-color: #cdcbc9;
  filter: brightness(89%)
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
  color: #8D8678;
  line-height: 150%;
  font-family: var(--header-font);
}

h1 {
  /* just for seo */
  display: none;
}

h2 {
  font-size: 375%;
  text-align: center;
  color: var(--header);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

h3, .names, .archive {
  font-size: 200%;
  color: var(--header);
  margin-bottom: 15px;
  margin-top: 60px;
  text-transform: uppercase;
  font-family: var(--header-font);
}

h4 {
  margin-top: 30px;
  font-size: 150%;
  color: var(--header);
}

h5 {
  font-size: 120%;
}

/* -- reader -- */
.feeds-item {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border, #eee);
}

.feeds-item .post-title {
  margin-bottom: 0.25rem;
}

.feeds-title {
  text-decoration: none;
}

.feeds-title:hover .post-title {
  text-decoration: underline;
}

.feeds-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

.feeds-feed {
  font-style: italic;
}
