body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: black url('lightning-bg.jpg') repeat-y center;
  color: white;
}

a {
  color: #ccc;
  text-decoration: none;
}
a:hover {
  color: #fff;
  text-decoration: underline;
}

.container {
  display: flex;
}

.sidebar {
  width: 240px;
  background-color: black;
  padding: 20px;
  text-align: center;
}

.logo {
  font-family: 'Georgia', serif;
  font-size: 32px;
  margin: 0;
}

.url {
  font-size: 14px;
  margin-bottom: 20px;
  color: #999;
}

nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

nav a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.content {
  flex: 1;
  padding: 30px;
  background-color: black;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  border-bottom: 1px solid #444;
  margin-bottom: 20px;
}

.update-date {
  color: #999;
}

.post {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.post-media img {
  width: 300px;
  height: auto;
  border: 1px solid #666;
}

.post-media.right {
  order: 3;
}

.post.video iframe {
  border: 2px solid #666;
}

.post-text {
  flex: 1;
  min-width: 280px;
}
