@import url(https://fonts.bunny.net/css?family=bitter:400,400i|fira-sans-condensed:700,700i);

/* Light mode */
:root {
		--text: #F2F1E4;
		--link: #FDB35D;
		--link_visited: #DB7018;;
		--accent1: #f8f8f2;
		--accent2: #f8f8f2;
		--background: #0F0224;
		--code: #44475a;
		--button-text: #282a36;
		--blockquote: #44475a;
		--blockquote-border: #6272a4;
		--aside: #6272a4;
		--aside-border: #7797b7	;
		--note: #3f444a;
		--note-border: #4f545a;
		--alert: #ff5555;
		--alert-border: #ff6e6e;
		--field: #44475a;
		--mark: #FFFF99;
		--heading-color: #FC8803
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
:root {
		--text: #F2F1E4;
		--link: #FDB35D;
		--link_visited: #FDB35D;
		--accent1: #f8f8f2;
		--accent2: #f8f8f2;
		--background: #0F0224;
		--code: #44475a;
		--button-text: #282a36;
		--blockquote: #44475a;
		--blockquote-border: #6272a4;
		--aside: #6272a4;
		--aside-border: #7797b7	;
		--note: #3f444a;
		--note-border: #4f545a;
		--alert: #ff5555;
		--alert-border: #ff6e6e;
		--field: #44475a;
		--mark: #FFFF99;
		--heading-color: #FC8803
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Fira Sans Condensed', sans-serif;
}

body {
    font-family: 'Bitter', serif;
}

/* Modify to your preferences */
.post-preview {
border: 1px solid var(--link);
border-radius: 6px;
margin-top: 12px;
margin-right: 0px
margin-bottom: 12px;
margin-left: 0px;
padding-top: 18px;
padding-right: 12px;
padding-bottom: 6px;
padding-left: 18px;
}

.post-content {
border: 1px solid var(--link);
margin-top: 12px;
margin-right: 0px
margin-bottom: 12px;
margin-left: 0px;
padding-top: 18px;
padding-right: 12px;
padding-bottom: 6px;
padding-left: 18px;
}

header h1 a.site-title,
header h1 a.site-title:visited {
  font-size: 0.7em;
  background-color: var(--heading-color);
  color: var(--background);   
  margin-bottom: 12px;
  padding-top: 6px;
  padding-right: 12px;
  padding-bottom: 6px;
  padding-left: 12px;
  display: inline-block; 
}

img.profile_photo {
  display: none;
}

header p {
	display: none;
}

/* Hide Categories on Posts */
ul.post-tags { 
	display: none; 
}

.archive_categories {
	display: none;
{