/* style.css */

body {
  background-color: black;
  color: white;
  font-family: 'Courier New', Courier, monospace;
  text-align: center;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

a {
  color: #00ffff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.intro {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.logo {
  width: 500px;
  height: auto;
  margin-right: 20px;
}

.bio {
  max-width: 500px;
  text-align: left;
}

.post {
  background-color: white;
  color: black;
  border-radius: 8px;
  padding: 1rem;
  margin: 2rem auto;
  max-width: 700px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  text-align: left;
}

.post img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem auto;
}

.post h2 {
  margin-top: 0;
}
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  padding-top: 25px;
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Layout */
.page {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 220px;           /* tweak as you like */
  padding: 1rem;
  background: #f7f7f7;
  border-right: 1px solid #ddd;
  position: sticky;
  top: 0;                 /* freezes sidebar while you scroll */
  height: 100vh;
  overflow-y: auto;
}

.sidebar h3   { margin-top: 1.5rem; font-size: 1.1rem; }
.sidebar ul   { list-style: none; padding-left: 0; }
.sidebar li   { margin: .35rem 0; }
.sidebar a    { text-decoration: none; color: #333; }
.sidebar a:hover { text-decoration: underline; }

/* Main content column */
.content {
  flex: 1;
  padding: 2rem;
  max-width: 800px;       /* optional readability limit */
  margin: 0 auto;
}

/* Existing stuff */
.post { margin-bottom: 3rem; }

/*  layout stays the same … */

.sidebar {
  width: 200px;
  padding: 1rem;
  background: #f7f7f7;
  border-right: 1px solid #ddd;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

/* simple vertical menu */
.menu          { list-style: none; margin: 0; padding: 0; }
.menu li       { margin: .6rem 0; }
.menu a        { text-decoration: none; color: #222; font-weight: 600; }
.menu a:hover,
.menu a.active { text-decoration: underline; }
