<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>My Creative Blog</title>
  <style>
    /* This is CSS — paste whatever you want here! */
    body {
      font-family: 'Segoe UI', sans-serif;  /* nice readable font */
      background-color: #0f0f0f;            /* very dark background */
      color: #e0e0e0;                       /* light gray text */
      margin: 0;
      padding: 0;
    }
    .container {
      max-width: 800px;                     /* keeps content from stretching too wide */
      margin: 0 auto;                       /* centers it on the page */
      padding: 4rem 2rem;                   /* lots of space around edges */
    }
    h1 {
      font-size: 3.5rem;                    /* big heading */
      text-align: center;
      margin-bottom: 2rem;
      color: #ffffff;
    }
    p {
      font-size: 1.3rem;                    /* bigger readable text */
      line-height: 1.7;                     /* space between lines */
      margin-bottom: 1.5rem;
    }
    a {
      color: #00aaff;                       /* bright link color */
      text-decoration: none;                /* no underline by default */
    }
    a:hover {
      text-decoration: underline;           /* underline only on hover */
    }
  </style>
</head>
<body>
  <div class="container">
    <h1>Welcome to My Site</h1>
    <p>This is my raw, creative corner of the web — coming soon with blog posts, music, weird thoughts.</p>
    <p><a href="#">Blog (placeholder)</a> | <a href="#">About</a></p>
  </div>
</body>
</html>
/* Navigation Bar */
.navbar {
  position: fixed;          /* Stays at top when scrolling */
  top: 0;
  left: 0;
  width: 100%;
  background-color: #111;   /* Dark to match your theme */
  border-bottom: 1px solid #222;
  z-index: 1000;            /* Above other content */
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: 900px;         /* Matches your .container width-ish */
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;                /* Space between links */
}

.nav-links li a {
  color: #ccc;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #0af;              /* Bright hover like your links */
}

/* Push main content down so nav doesn't overlap it */
body {
  padding-top: 70px;        /* Adjust if your nav is taller/shorter */
}
.blog-teasers {
  list-style: none;
  padding: 0;
}

.blog-teasers li {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #222;
}

.blog-teasers li:last-child {
  border-bottom: none;
}

.blog-teasers strong {
  font-size: 1.4rem;
  color: #fff;
}

.blog-teasers small {
  color: #888;
  font-size: 0.9rem;
}

.blog-teasers p {
  margin-top: 0.5rem;
  color: #bbb;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;  /* Or flex-start for left align */
  margin: 2rem 0;
}

.social-links a {
  color: #0af;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border: 1px solid #333;
  border-radius: 6px;
  transition: all 0.3s;
}

.social-links a:hover {
  background: #222;
  color: #fff;
  border-color: #0af;
}