@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=VT323&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Silkscreen&family=Share+Tech+Mono&display=swap');

:root {
  --bg:         #0f0e11;
  --bg-surface: #1a1820;
  --border:     #3a3545;
  --text:       #c8c0d8;
  --text-dim:   #7a7090;
  --accent:     #a78bfa;
  --accent-alt: #6ee7b7;
  --earthy:     #c4a96a;
}

body {
  font-family: 'Share Tech Mono', monospace;
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  background-color: var(--bg-surface);
}

h1 {
  font-family: 'VT323', monospace;
  font-size: 3.5rem;
  color: var(--accent);
  margin-bottom: 0.25rem;
  letter-spacing: 3px;
}

h2 {
  font-family: 'VT323', monospace;
  font-size: 1.8rem;
  color: var(--accent-alt);
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

nav a {
  font-family: 'Share Tech Mono', monospace;
  color: var(--earthy);
  text-decoration: none;
  font-size: 0.95rem;
}

nav a::before {
  content: '> ';
  color: var(--accent);
}

nav a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.tagline {
  color: var(--text-dim);
  font-style: italic;
  margin-top: 0.25rem;
  font-size: 0.9rem;
}

p {
  line-height: 1.7;
}

ul {
  padding-left: 1.25rem;
  line-height: 1.9;
  list-style: none;
}

ul li::before {
  content: '* ';
  color: var(--accent-alt);
}

footer {
  margin-top: 4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-dim);
  text-align: center;
}

article {
	max-width: 520px;
	margin: 0 auto;
	text-align: center;
}

time {
	font-size: 0,8rem;
	color: var(--text-dim);
	display: block;
	margin-bottom: o.75rem;
}

.post-list {
  list-style: none;
  padding: 0;
}

.post-list li {
  display: flex;
  gap: 1.5rem;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.post-list li::before {
  content: none;
}

.post-list time {
  font-size: 0.8rem;
  color: var(--text-dim);
  flex-shrink: 0;
}

.post-list a {
  color: var(--accent);
  text-decoration: none;
}

.post-list a:hover {
  color: var(--accent-alt);
  text-decoration: underline;
}

.back a {
  color: var(--text-dim);
  font-size: 0.9rem;
  text-decoration: none;
}

.back a:hover {
  color: var(--accent);
}

.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-top:1rem;
}

.art-card {
	background-color: var(--bg.surface);
	border: 1px solid var(--border);
	overflow: hidden;
}

.art-card img {
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
	display: block;
}

.art-info {
	padding: 0.75rem 1rem;
}

.art-info h2 {
	font-size: 1.2rem;
	margin-top: 0;
	margin-bottom: 0.25rem;
	color: var(--accent);
}

.art-info p {
	font-size: 0.85rem;
	color: var(--text.dim);
	margin: 0;
	line-height: 1.5;
}

.art-card img:hover {
	opacity: 0.85;
	transition: opacity 0,2s ease;
}
