* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
  background: #000;
  color: #ccc;
  font-family: "Courier New", Courier, monospace;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: unset;
  text-rendering: optimizeSpeed;
}

body {
  padding: 1rem;
}

@media (min-width: 480px) {
  body {
    padding: 2rem;
  }
}

@media (min-width: 768px) {
  body {
    padding: 3rem;
  }
}

.profile-card {
  max-width: 320px;
  margin: 2rem auto;
  padding: 1.5rem;
  border: 2px solid #444;
  border-radius: 4px;
  text-align: center;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.profile-card img {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  flex-shrink: 0;
}

.profile-info {
  text-align: left;
}

.profile-card h1 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.profile-handle {
  color: #888;
  font-size: 1rem;
}

.profile-card blockquote {
  font-style: italic;
  color: #888;
}

.socials-section {
  max-width: 320px;
  margin: 2rem auto;
  padding: 1.5rem;
  border: 2px solid #444;
  border-radius: 4px;
}

.socials-section h2 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #888;
}

.socials-list {
  list-style: none;
}

.socials-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0;
  font-size: 0.875rem;
}

.socials-list a {
  color: #ccc;
  text-decoration: none;
}

.socials-list a:hover {
  color: #fff;
}

.social-label {
  color: #555;
}

.social-value {
  color: #ccc;
}

.blog-section {
  max-width: 320px;
  margin: 2rem auto;
  padding: 1.5rem;
  border: 2px solid #444;
  border-radius: 4px;
}

.blog-section h2 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #888;
}

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

.post-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #222;
}

.post-list li:last-child {
  border-bottom: none;
}

.post-list a {
  color: #ccc;
  text-decoration: none;
}

.post-list a:hover {
  color: #fff;
}

.post-date {
  color: #555;
  font-size: 0.875rem;
}

.post-header {
  max-width: 768px;
  margin: 2rem auto 1rem;
  padding: 1.5rem 0;
  text-align: center;
  border-bottom: 1px solid #333;
}

.post-header h1 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.post-meta-row {
  display: flex;
  justify-content: space-between;
  max-width: 768px;
  margin: 0 auto;
  font-size: 0.875rem;
}

.post-description {
  color: #888;
}

.post-time {
  color: #555;
}

.blog-post {
  max-width: 768px;
  margin: 0 auto;
}

.blog-post h1 {
  font-size: 1.5rem;
  margin: 1.5rem 0 0.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 0.25rem;
}

.blog-post h2 {
  font-size: 1.25rem;
  margin: 1.25rem 0 0.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 0.25rem;
}

.blog-post h3 {
  font-size: 1rem;
  margin: 1rem 0 0.5rem;
}

.blog-post p {
  margin-bottom: 1rem;
}

.blog-post blockquote {
  border-left: 3px solid #444;
  padding-left: 1rem;
  margin: 1rem 0;
  color: #888;
}

.blog-post code {
  background: #111;
  padding: 0.125rem 0.375rem;
  font-family: "Courier New", Courier, monospace;
}

.blog-post pre {
  background: #111;
  padding: 1rem;
  overflow-x: auto;
  margin: 1rem 0;
}

.blog-post pre code {
  background: transparent;
  padding: 0;
}

.blog-post ul, .blog-post ol {
  margin: 1rem 0 1rem 1.5rem;
}

.blog-post li {
  margin-bottom: 0.25rem;
}

.post-back {
  text-align: left;
  margin-bottom: 0.5rem;
}

.post-back a {
  color: #555;
  text-decoration: none;
  font-size: 0.875rem;
}

.post-back a:hover {
  color: #888;
}
